]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/using1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / using1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/using1.C b/gcc/testsuite/g++.old-deja/g++.other/using1.C
deleted file mode 100644 (file)
index a431a95..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-class D2;
-
-class B {
-private:
-  int a; // ERROR - B::a is private
-protected:
-  int b;
-
-  friend class D2;
-};
-
-class D : public B { // ERROR - within this context
-public:
-  using B::a;
-  using B::b;
-};
-
-class D2 : public B { // ERROR - conflicting access specifications
-public:
-  using B::a;
-  using B::b;
-
-private:
-  using B::b; 
-};