PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / debug / using5.C
blob3f2de9bfb8063f7f19773f92a245069f60ab1233
1 // PR c++/26256
2 // { dg-do compile }
4 struct A
6     int i;
7 };
9 struct B
11     int i;
14 struct C : A, B
16     using B::i;
17     int f ();
20 int C::f()
22     return i;