aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/crash8.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/crash8.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/crash8.C9
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/crash8.C b/gcc/testsuite/g++.old-deja/g++.jason/crash8.C
deleted file mode 100644
index cadda2f4764..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/crash8.C
+++ /dev/null
@@ -1,9 +0,0 @@
-struct A {
- A();
- A(A); // ERROR - copy ctor must take reference
-};
-int main()
-{
- A a;
- A b(a); // causes compiler segfault
-}