2013-04-30 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / hidden-class6.C
blob96425353911f27761dfb6d72c81efdc11f356358
1 // { dg-do compile }
3 // Origin: Jay Cox <jaycox@gimp.org>
5 // PR c++/1016: Name lookup for injected friend class
7 class B;
9 namespace N {
10   class A {
11     friend class B;
12     B* b;
13   };