blob: 90c61226352964746f8f2130a7dd28d39f8729bc [file] [log] [blame]
// { dg-do assemble }
// Bug: g++ parses the declaration of 'char A::* foo' below as a
// declaration of 'char A'.
class A { };
typedef int foo;
void f ()
{
char A::* foo;
foo = 0; // { dg-bogus "" } parsing blunder
}