]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/lvalue.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / lvalue.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/lvalue.C b/gcc/testsuite/g++.old-deja/g++.jason/lvalue.C
deleted file mode 100644 (file)
index c85e6fe..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Bug: Scoped method calls don't propagate the constness of `this'.
-// PRMS Id: 4181 (second testcase)
-// Build don't link:
-
-class D;
-
-class Bptr
-{
-public:
-  Bptr& operator=(D*);                          
-  const Bptr& operator=(const D*) const;        
-};
-
-class Dptr : public Bptr
-{
-public:
-  const Dptr& operator=(const D* rep) const 
-  {
-    Bptr::operator=(rep);
-    return *this;
-  }
-};