]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/soverload.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / soverload.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/soverload.C b/gcc/testsuite/g++.old-deja/g++.jason/soverload.C
deleted file mode 100644 (file)
index 793e37f..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-// Bug: dfs_pushdecls doesn't create an overload list for member functions,
-//   like it claims to.
-// Build don't link:
-
-struct A
-{
-  static int foo (int);
-  static int foo (int, int);
-  void bar () { foo (1, 2); }  // gets bogus error - broken overloading
-};