1 // RUN: %clang_cc1 -fsyntax-only -std=c99 -verify -pedantic %s
5 int testx
[(sizeof(x
) == sizeof(int) * 10) ? 1 : -1];
7 int (*a
)(int (*x
)[10], int (*y
)[]);
8 int (*a
)(int (*x
)[], int (*y
)[5]);
12 a(&y
, &y
); // expected-warning {{incompatible pointer}}
13 a(&x
, &x
); // expected-warning {{incompatible pointer}}