]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/using6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / using6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/using6.C b/gcc/testsuite/g++.old-deja/g++.other/using6.C
deleted file mode 100644 (file)
index 40b21b5..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-// Test of class-scope using-declaration for functions.
-
-#define assert(COND) if (!(COND)) return 1
-
-struct A {
-  int f(int) { return 1; }
-  int f(char) { return 2; }
-};
-
-struct B {
-  int f(double) { return 3; }
-};
-
-struct C : public A, public B {
-  using A::f;
-  using B::f;
-  int f(char) { return 4; }
-  int f(C) { return 5; }
-};
-
-int main ()
-{
-  C c;
-
-  assert (c.f(1) == 1);
-  assert (c.f('a') == 4);
-  assert (c.f(2.0) == 3);
-  assert (c.f(c) == 5);
-}