OSDN Git Service

PR c++/43680
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wvla-2.C
1 /* { dg-do compile } */
2 /* { dg-options "-pedantic-errors -Wvla" } */
3
4 void func (int i)
5 {
6   int array[i]; /* { dg-error "ISO C.* forbids variable.* array 'array'" } */
7 }