aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb69.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb69.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.robertl/eb69.C9
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb69.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb69.C
deleted file mode 100644
index 9cc5f4a3ffe..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.robertl/eb69.C
+++ /dev/null
@@ -1,9 +0,0 @@
- #include <iostream.h>
- struct foo {
- foo(int x) { cerr << "foo's int constructor (" << x << ")\n"; };
- };
- struct bar : foo {
- typedef int an_int;
- bar() : bar::an_int(3) {}; // will call foo::foo(3)
- };
-int main() { bar b; }