]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/vla-9.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / vla-9.c
CommitLineData
4adb785d
MS
1/* { dg-do compile } */
2/* { dg-options "-std=c99 -pedantic-errors -W -Wall" } */
3/* PR c/28280 */
4
5void f(__SIZE_TYPE__ d)
6{
7 typedef int t[d];
8 t *g = (__typeof (g)) d;
60d3aec4 9 (void) g;
4adb785d 10}