]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/unify3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / unify3.C
diff --git a/gcc/testsuite/g++.dg/template/unify3.C b/gcc/testsuite/g++.dg/template/unify3.C
deleted file mode 100644 (file)
index 190a0cb..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// Test unifying SCOPE_REF.
-// Origin: Marc Duflot <m.duflot@ulg.ac.be>
-// { dg-do compile }
-
-template <int n> class A {};
-template <int m> class R {};
-
-template <int n> struct Trait { enum {m = n}; };
-
-template <int n> R<Trait<n>::m> f(A<n>);
-template <> R<1> f(A<1>) {return R<1>();}