1 // PR c++/71209
2 
3 struct A {
4   int table_clear;
5 };
6 
7 template <typename T>
8 struct B : T {
BB9   B() { this->A::table_clear; }
10 };
11