2 // g++ 1.36.1 bug 891230_01
4 // g++ gives typedefs which are nested within class declarations a scope
5 // which is local to the class declaration itself. This causes examples
6 // like the following to get compile-time errors.
8 // Cfront 2.0 passes this test.
10 // keywords: typedef, nested types, scope
18 void foo::member (foo_p p) { // { dg-bogus "" } s
21 int main () { return 0; }