aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/crash9.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/crash9.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/crash9.C29
1 files changed, 0 insertions, 29 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/crash9.C b/gcc/testsuite/g++.old-deja/g++.jason/crash9.C
deleted file mode 100644
index 6cacb11a541..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/crash9.C
+++ /dev/null
@@ -1,29 +0,0 @@
-// PRMS Id: 5085
-// Bug: TYPE_POINTER_TO wasn't set.
-// Build don't link:
-
-class A {
- A(const A &);
- void operator=(const A &);
-public:
- inline A();
-};
-
-class B {
- A a;
-public:
- B();
- virtual void f() const;
-};
-
-class C : public B { };
-
-class D : C {
-public:
- void f() const;
-};
-
-void D::f() const
-{
- C::f();
-}