blob: 392305b094fdaa172c4f2241819dc78b58c710e0 [file] [log] [blame]
// PR c++/71209
struct A {
int table_clear;
};
template <typename T>
struct B : T {
B() { this->A::table_clear; }
};