OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / using31.C
1 // { dg-do compile }
2
3 struct H2 { int f (); };
4 struct J2 : H2
5 {
6   struct f {};
7   using H2::f;
8 };