blob: 4e2db1479b7501e262e9fcb4155e852567c37da1 [file] [log] [blame]
struct B {
static void f();
};
template <typename T>
struct D : private B {
void g() {
f();
}
};
void h() {
D<int> d;
d.g();
}