]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/explicit67.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit67.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit67.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit67.C
deleted file mode 100644 (file)
index c8705f4..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-struct S
-{
-  void f(int);
-  void f(double);
-};
-
-void g(int);
-void g(double);
-
-template <int* IP>
-void foo();
-template <long l>
-void foo();
-
-void bar()
-{
-  foo<S::f>(); // ERROR - no matching function
-  foo<g>();    // ERROR - no matching function
-  
-}