aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/hidden-temp-class6.C
blob: 2072695ba7debdb68c452f87808b7fd87904ef8b (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2005 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
// { dg-do compile }

class B;
namespace N {
  class A {
    template <class T> friend class B;
    B* b;
  };
}