1 // { dg-do assemble  }
2 // GROUPS passed parsing
3 // parsing folder
4 // From: tll@cco.caltech.edu (Tal Lewis Lancaster)
5 // Date:     18 Mar 1993 17:09:43 GMT
6 // Subject:  Re: unexpected difference between gcc and g++ (both 2.3.3)
7 // Message-ID: <1oaacnINNt20@gap.caltech.edu>
8 
9 /* Notice that this case parses fine */
10 int (* volatile y)[10];
11 
foo2()12 void foo2() {
13         /* The parser can't handle it now */
14         int (* volatile x)[10];
15 }
16