blob: fac78cebeaf0f52875848201ea60a032fbee04ad [file] [log] [blame]
// PRMS Id: 4687
// Bug: g++ misinterprets typedefs of function type in class scope.
// Build don't link:
struct A {
typedef int F();
F *fp;
void* g() { return fp; } // gets bogus error - typing
};