decl-type-merging.c revision d1969d803cfcc65f1c334df4cc89c7fdd33ee4c9
1// RUN: clang-cc -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
17