Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / scoping8.C
blobfe3b33646014dbd6c3f14fe3a4e328f1edee87cf
1 // { dg-do assemble  }
2 // Bug: g++ allows two different meanings of a name in the same scope.
4 typedef int foo;                // { dg-message "declared here" }
5 struct A {
6   A (foo);
7   int foo ();                   // { dg-error "changes meaning" }
8 };