OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wvla-1.C
1 /* { dg-do compile } */
2 /* { dg-options "-Wvla" } */
3
4 void func (int i)
5 {
6   int array[i]; /* { dg-warning "variable length array 'array' is used" } */
7 }