Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / array-quals-2.c
blob2f1304e2a649d6467b6e8165e407dd48dd7d84da
1 /* Test that pointers to arrays of differently qualified types aren't
2 permitted in conditional expressions, and that qualifiers aren't
3 lost in forming composite types. */
4 /* Origin: Joseph Myers <joseph@codesourcery.com> */
5 /* { dg-do compile } */
6 /* { dg-options "" } */
7 typedef const char T[1];
8 typedef const char T2[1];
9 typedef volatile char U[1];
10 T *p;
11 T2 *p2;
12 U *q;
13 void *f(void) { return 1 ? p : q; } /* { dg-warning "pointer type mismatch in conditional expression" } */
14 T *g(void) { return 1 ? p : p2; }