blob: 4b701b6136fe7b2b68b2ef749a6a084e042381e0 [file] [log] [blame]
// Build don't link:
// GROUPS passed operators
// opr-new file
// From: gparker@world.std.com (Glenn P Parker)
// Date: Mon, 25 Jan 1993 20:43:43 -0500
// Subject: gcc bug
// Message-ID: <199301260143.AA14133@world.std.com>
typedef int (**PPF)(int);
int main(void)
{
PPF pf2 = new (int (*) (int)); // internal compiler error on this line.
return 0;
}