aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/crash27.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/crash27.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/crash27.C20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/crash27.C b/gcc/testsuite/g++.old-deja/g++.brendan/crash27.C
deleted file mode 100644
index 62acbe03e19..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/crash27.C
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't link:
-// GROUPS passed old-abort
-class First {
-public:
- First(const First& a);
-};
-
-class Second {
- int i;
- First f;
-public:
- ~Second() {}
- Second func();
-};
-
-void foo()
-{
- extern Second x;
- x = x.func();
-}