]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/lookup/hidden-temp-class6.C
Friend class name lookup 5/n PR c++/1016
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / lookup / hidden-temp-class6.C
1 // Copyright (C) 2005 Free Software Foundation
2 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3 // { dg-do compile }
4
5 class B;
6 namespace N {
7 class A {
8 template <class T> friend class B;
9 B* b;
10 };
11 }