2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / operators25.C
blobe37306492c3decf18af35a8fcdef41925cc1d30a
1 // { dg-do assemble  }
2 // GROUPS passed operators
3 // opr-new file
4 // From: gparker@world.std.com (Glenn P Parker)
5 // Date:     Mon, 25 Jan 1993 20:43:43 -0500
6 // Subject:  gcc bug
7 // Message-ID: <199301260143.AA14133@world.std.com>
9 typedef int (**PPF)(int);
11 int main(void)
13   PPF pf2 = new (int (*) (int));     // internal compiler error on this line.
15   return 0;