aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.martin/ambig1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.martin/ambig1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.martin/ambig1.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.martin/ambig1.C b/gcc/testsuite/g++.old-deja/g++.martin/ambig1.C
deleted file mode 100644
index 9886991e29b..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.martin/ambig1.C
+++ /dev/null
@@ -1,22 +0,0 @@
-//Build don't link:
-//Based on a report by Bill Currie <bcurrie@tssc.co.nz>
-struct foo {
- protected:
- int x; // ERROR - candidate
-};
-
-struct bar {
- public:
- int x(); // ERROR - candidate
-};
-
-struct foobar: public foo, public bar {
- foobar();
-};
-
-int func(int);
-
-foobar::foobar()
-{
- func(x); // ERROR - ambiguous member access
-}