]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/overload1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / overload1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/overload1.C b/gcc/testsuite/g++.old-deja/g++.pt/overload1.C
deleted file mode 100644 (file)
index 25a40b1..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-template <class T> struct B { };
-
-template <class T> struct A {
-  template <class U, class V> int operator () (U u, V v);
-  template <class U, class V> void operator () (B<U> u, B<V> v) { }
-};
-
-int
-main ()
-{
-  A<int> a;
-  B<char> b1;
-  B<short> b2;
-  a (b1, b2);
-}