2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vlm1.C
blob13f6702771064704d2b25b6bb17c50d20b4c7db0
1 // { dg-options "" }
3 template <class T> struct A {};
4  
5 struct B {
6   static const int s;
7   A<int[s]> a; // { dg-error "variably modified|no type|trying to instantiate" }
8 };
9  
10 const int B::s=16;
12 B b;