Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / niklas01a.C
blobf2b27a661de543371dafc46549e2bd253c9b0305
1 // { dg-do assemble  }
2 // { dg-options "-fshow-column" }
4 struct A { // { dg-message "" } forward declaration
5   friend struct B : A {         // { dg-error "invalid use of incomplete type 'struct A" "invalid" }
6     int x;
7   };    // { dg-error "class definition may not be declared a friend" "may not"  { target *-*-* } 5 }
8   int y;
9 };