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

class A {
  friend class B;
  B *b;		// { dg-error "type|expected" }
};