]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/template30.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / template30.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/template30.C b/gcc/testsuite/g++.old-deja/g++.jason/template30.C
deleted file mode 100644 (file)
index 98bad49..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-template <class T, class U>    
-int func(U, T);                        // ERROR - ref below
-
-template <class T, class U>    
-int func(T, U)
-{                              // ERROR - ref below
-        return 2;
-}
-
-int main ()
-{
-  func (0, 1);                 // ERROR - ambiguous
-}