OSDN Git Service

* g++.old-deja/g++.jason/thunk3.C: Remove mips*-*-* xfail.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping12.C
1 // { dg-do assemble  }
2 void f ()
3 {
4   struct A {
5     friend void g ();
6   };
7 }
8 void h () {
9   g ();                         // { dg-error "" } no g in scope
10 }