2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vlm2.C
blob3a0b335262c1bff59b52479ba0b390e04eda366c
1 // { dg-options "" }
3 int n;
5 struct Y
7   void f () {
8     typedef int X[n];
9     struct Z {
10       X x; // { dg-error "variably modified" }
11     };
12   }