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

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

template <class T> class N::B {	// { dg-error "not name a class" }
};