]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/defarg14.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / defarg14.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/defarg14.C b/gcc/testsuite/g++.old-deja/g++.pt/defarg14.C
deleted file mode 100644 (file)
index 7ae4941..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Build don't link:
-
-// Origin: Larry Evans <jcampbell3@prodigy.net>
-
-// Bug: enum in default template arguments are not properly handled.
-
-enum Enum0 { E0, E1, E2 };
-enum Enum1 { E3=E2+1, E4=E3+1 };
-
-template <Enum0 Out_FARG0> class OutTmpl
-{
-  public:
-    template <Enum0 In_FARG0, Enum1 In_FARG1=E4> class InTmpl
-    {
-    };
-};
-
-OutTmpl<E1> m;