summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/unify12.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/template/unify12.C')
-rw-r--r--gcc/testsuite/g++.dg/template/unify12.C46
1 files changed, 0 insertions, 46 deletions
diff --git a/gcc/testsuite/g++.dg/template/unify12.C b/gcc/testsuite/g++.dg/template/unify12.C
deleted file mode 100644
index 6e624e41d6a..00000000000
--- a/gcc/testsuite/g++.dg/template/unify12.C
+++ /dev/null
@@ -1,46 +0,0 @@
-// { dg-do run }
-#include <cassert>
-
-template<typename T, int I> int foo (T [I][I]) { return 0; }
-
-template int foo (char [][6]);
-
-template <typename T>
-int foo (T *)
-{
- return -1;
-}
-
-template <typename T>
-int foo (T [3][3])
-{
- return 1;
-}
-
-template <int I>
-int foo (bool [I][I])
-{
- return 2;
-}
-
-template <>
-int foo (bool [3][2])
-{
- return 3;
-}
-
-char x[3];
-bool y[4];
-bool z[3][2];
-
-int a = foo (&x);
-int b = foo (&y);
-int c = foo (z);
-
-int
-main ()
-{
- assert (a == 1);
- assert (b == 2);
- assert (c == 3);
-}