OSDN Git Service

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