Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / debug / using4.C
blob8a6162606c4a4aa60c1c36633663eef5c4598233
1 // PR c++/26256
2 // { dg-do compile }
4 struct A
6     typedef char type;
7 };
9 struct B
11     typedef int type;
14 struct C : A, B
16     using A::type;
17     type f (type);
20 C::type C::f( type )
22     type c = 'e';
23     return c;