modernc.org/cc@v1.0.1/testdata/issue9.c (about) 1 typedef short JBLOCK[64]; 2 typedef JBLOCK *JBLOCKROW; 3 typedef JBLOCKROW *JBLOCKARRAY; 4 typedef JBLOCKARRAY *JBLOCKIMAGE; 5 6 short v6[64]; 7 short (v6)[64]; 8 JBLOCK v6; 9 JBLOCK (v6); 10 11 short (*v11)[64]; 12 short ((*v11))[64]; 13 short ((*v11)[64]); 14 JBLOCKROW v11; 15 JBLOCKROW (v11); 16 17 short (**v17)[64]; 18 short ((**v17))[64]; 19 short ((**v17)[64]); 20 JBLOCKARRAY v17; 21 JBLOCKARRAY (v17); 22 23 short (***v23)[64]; 24 short ((***v23))[64]; 25 short ((***v23)[64]); 26 JBLOCKIMAGE v23; 27 JBLOCKIMAGE (v23);