1 void f77(int a[1, 2]); 2 void c99(int a[(1, 2)]); 3 4 /* 5 * check-name: abstract-array-declarator 6 * 7 * check-error-start 8 abstract-array-declarator.c:1:17: error: Expected ] in abstract_array_declarator 9 abstract-array-declarator.c:1:17: error: got , 10 * check-error-end 11 */ 12