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