]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.law/operators6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / operators6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.law/operators6.C b/gcc/testsuite/g++.old-deja/g++.law/operators6.C
deleted file mode 100644 (file)
index f66f649..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Build don't link: 
-// GROUPS passed operators
-// opr-as file
-// From: Klaus Ahrens <ahrens@informatik.hu-berlin.de>
-// Date:     Fri, 26 Mar 93 12:50:37 mez
-// Subject:  no default assignment
-// Message-ID: <199303261149.TA23114@mail.Germany.EU.net>
-
-class A {
-public:
-        A(int){}
-        A& operator=(const A&){return *this;}
-};
-
-class B: public A {
-public:
-        B(int i): A(i) {}
-};
-
-int main()
-{
-        B b=1;
-        b=1;
-}