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

class A {
  friend class B;

  class B;
  B *b;
};