aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/offset1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/offset1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/offset1.C17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/offset1.C b/gcc/testsuite/g++.old-deja/g++.jason/offset1.C
deleted file mode 100644
index d4fd38b70dc..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/offset1.C
+++ /dev/null
@@ -1,17 +0,0 @@
-// PRMS Id: 5070 (testcase 1)
-// Build don't link:
-
-struct foo {
- foo(int x = 0) {};
- int IsAlive(void) { return 1; }
-};
-
-struct xx {
- int IsOk(int X);
- foo a;
-};
-
-int xx::IsOk(int X)
-{
- return ((xx::a).IsAlive()); // gets bogus error
-}