Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / vla-20.c
blob831ed1b8cd27949d070bc74f8b245e784a03633c
1 /* Test use of sizeof with [*] in type name: should not refer to
2 zero-size array. PR 39582. */
3 /* { dg-do compile } */
4 /* { dg-options "-std=c99 -pedantic-errors" } */
6 void foo11d(int x[sizeof(int *[*])]); /* { dg-warning "not in a declaration" } */
8 /* Although the size is not constant, it may nevertheless appear in a
9 constant expression if not evaluated. */
11 void foo11e(int x[1 ? 0 : sizeof(int *[*])]); /* { dg-warning "not in a declaration" } */
12 /* { dg-error "zero-size array" "correct zero size" { target *-*-* } .-1 } */