aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/crash1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/crash1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/crash1.C29
1 files changed, 0 insertions, 29 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/crash1.C b/gcc/testsuite/g++.old-deja/g++.jason/crash1.C
deleted file mode 100644
index 298273490fc..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/crash1.C
+++ /dev/null
@@ -1,29 +0,0 @@
-// Bug: g++ dies on this input.
-// Build don't link:
-
-class Sample
- {
- public:
- int operator <<(const char *c);
- };
-
-extern Sample sample;
-
-struct Simple
- {
- int a;
- };
-
-extern "C" void get_it();
-
-class Test
- {
- private:
- void test();
- friend void get_it();
- };
-
-void Test::test()
- {
- sample << "hello";
- }