]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/lookup21.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup21.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup21.C b/gcc/testsuite/g++.old-deja/g++.other/lookup21.C
deleted file mode 100644 (file)
index 09b3123..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Check that we don't complain about ambiguity between the same static
-// member function in different subobjects.
-
-struct A {
-  static void f() {}
-};
-
-struct B: public A { };
-struct C: public A { };
-struct D: public B, public C { };
-
-int main()
-{
-  D d;
-  d.f();
-}