]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/ext/vlm1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / ext / vlm1.C
diff --git a/gcc/testsuite/g++.dg/ext/vlm1.C b/gcc/testsuite/g++.dg/ext/vlm1.C
deleted file mode 100644 (file)
index 61628e6..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// { dg-options "" }
-
-template <class T> struct A {};
-struct B {
-  static const int s;
-  A<int[s]> a; // { dg-error "variably modified|no type" }
-};
-const int B::s=16;
-B b;