blob: 259b0ddf1545dbee0b808de3fcabc620d891519c [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001// RUN: %clang_cc1 -fsyntax-only -std=c99 -verify -pedantic %s
2
3int x[10];
4int x[] = {1,2,3};
5int testx[(sizeof(x) == sizeof(int) * 10) ? 1 : -1];
6
7int (*a)(int (*x)[10], int (*y)[]);
8int (*a)(int (*x)[], int (*y)[5]);
9void b() {
10 int x[10], y[5];
11 a(&x, &y);
12 a(&y, &y); // expected-warning {{incompatible pointer}}
13 a(&x, &x); // expected-warning {{incompatible pointer}}
14}
15
16