Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / gcc / testsuite / g++.dg / ext / vla13.C
1 // PR c++/54583
2 // { dg-options "-Wunused-value" }
3
4 void fred()
5 {
6   int n=10;
7   double (*x)[n];
8 }