blob: 259b0ddf1545dbee0b808de3fcabc620d891519c [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -std=c99 -verify -pedantic %s
Eli Friedman13ca96a2009-01-24 23:49:55 +00002
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]);
Mike Stumpd1969d82009-07-22 00:43:08 +00009void 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}}
Eli Friedman13ca96a2009-01-24 23:49:55 +000014}
15
16