OSDN Git Service

PR c++/18698
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / friend4.C
1 // { dg-do compile }
2
3 // PR c++/4100
4 // You can't use friend when defining a class.
5
6 class A {
7   friend class B { };   // { dg-error "friend" }
8 };