parse14.C   [plain text]


// Bug: g++ decides that A::foo is introducing a constructor declarator.
// Build don't link:

struct A {
  typedef bool foo;
};

A::foo (*bar) ();

struct B {
  A::foo (*bar) ();
};