PR c++/67273
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using28.C
blobae4067a23ea011e153aa16bd9efe26d71685a312
1 // PR c++/26256
2 // { dg-do compile }
4 struct A { int f; };
5 struct B { int f; };
6 struct C : A, B { using B::f; };
8 struct D : C
10     void g() { f = 1; }