]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/unify2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / unify2.C
diff --git a/gcc/testsuite/g++.dg/template/unify2.C b/gcc/testsuite/g++.dg/template/unify2.C
deleted file mode 100644 (file)
index e5e6d19..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// { dg-do compile }
-
-template<int I> void f1 (char [][I+1]) {}
-template<int I> void f2 (char [][I+0]) {}
-template<int I> void f3 (char [][I]) {}
-template<int I> void f4 (char [][I-0]) {}
-template<int I> void f5 (char [][I-1]) {}
-
-template void f1 (char [][6]); // { dg-error "does not match" }
-template void f2 (char [][6]); // { dg-error "does not match" }
-template void f3 (char [][6]);
-template void f4 (char [][6]); // { dg-error "does not match" }
-template void f5 (char [][6]); // { dg-error "does not match" }