]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/overload13.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / overload13.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/overload13.C b/gcc/testsuite/g++.old-deja/g++.other/overload13.C
deleted file mode 100644 (file)
index d6728c7..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Build don't link:
-// Origin: Nathan Sidwell <nathan@codesourcery.com>
-
-struct A {
-  bool operator== (A const &);
-  operator bool () const;
-  operator int * () const;
-};
-
-bool foo (A &a1, A &a2)
-{
-  return a1 == a2;
-}