summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/binding3.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/binding3.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/binding3.C20
1 files changed, 0 insertions, 20 deletions
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
index 3cd358fb7af..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/binding3.C
+++ /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
-};