]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/template/copy1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / template / copy1.C
diff --git a/gcc/testsuite/g++.dg/template/copy1.C b/gcc/testsuite/g++.dg/template/copy1.C
deleted file mode 100644 (file)
index 3b45cc0..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// { dg-do compile }
-
-// Origin: hkluender@otg.com
-
-// PR 5189
-
-struct A
-{
-  A(A&); // { dg-error "candidate" "" }
-  template <class T> A(T); 
-};
-
-A a = 0; // { dg-error "no matching function|initializing" "" }
-