OSDN Git Service

PR c++/28606
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / friend3.C
1 // { dg-do compile }
2 //
3 // PR 11553 catch duplicate friend specifiers
4
5 struct S
6 {
7         friend friend class C; // { dg-error "duplicate" }
8 };
9
10