]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/complit1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / complit1.C
diff --git a/gcc/testsuite/g++.dg/template/complit1.C b/gcc/testsuite/g++.dg/template/complit1.C
deleted file mode 100644 (file)
index ab057b3..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// { dg-options "" }
-
-template <int D> struct C {
-  int d[3];
-  C();
-};
-
-template<int D>
-C<D>::C() : d((int[]){1,2,3}) {};
-
-template class C<1>;