aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/scoping12.C
blob: ef2f178a1867db168de3c8e87bee77cc6beed107 (plain)
1
2
3
4
5
6
7
8
9
void f ()
{
  struct A {
    friend void g ();
  };
}
void h () {
  g ();				// ERROR - no g in scope
}