]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/binding3.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / binding3.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/binding3.C b/gcc/testsuite/g++.old-deja/g++.jason/binding3.C
deleted file mode 100644 (file)
index 3cd358f..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Bug: g++ fails to clear out the IDENTIFIER_CLASS_VALUEs of various names
-// after a class definition.
-// Build don't link:
-
-struct A {
-  typedef double T;
-  virtual T f () = 0;
-};
-
-class B {
-  B (const B&);
-  void operator=(const B&);
-public:
-  B ();
-  typedef void * T;
-};
-
-struct C : public A {
-  T f ();                      // gets bogus error
-};