aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/hidden-temp-class3.C
blob: 3f96622ea4aba2b9cd6b1347ec4a7ef8efd74203 (plain)
1
2
3
4
5
6
7
8
9
// 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;
  template <class T> class B;
  B<int> *b;
};