113800Smhaupt// { dg-do assemble  }
213800Smhaupt// GROUPS passed parsing
313800Smhaupt// parsing folder
413800Smhaupt// From: szahn%Robinie@goesser.sie.siemens.co.at (Hr. Zahn)
513800Smhaupt// Date:     Mon, 5 Jul 93 10:45:51 +0200
613800Smhaupt// Subject:  Bug report g++ 2.4.5, unexpected syntax errors
713800Smhaupt// Message-ID: <9307050845.AA00499@ets5.uebemc.siemens.de>
813800Smhaupt
913800Smhauptint f1(
1013800Smhaupt    int (**a1)()
1113800Smhaupt    );
1213800Smhaupt
1313800Smhauptint f2(
1413800Smhaupt    int (**a1)()
1513800Smhaupt    );
1613800Smhaupt
1713800Smhaupt
1813800Smhauptint f3(
1913800Smhaupt    int (**a1)( int a, int b )
2013800Smhaupt    );
2113800Smhaupt
2213800Smhauptint f4(
2313800Smhaupt    int (**a1)( int a, int b )
2413800Smhaupt    );
2513800Smhaupt