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

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

class C {
  template <class T> friend class B;
};

B<int> *b;	// { dg-error "type|expected" }