summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/access16.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/access16.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/access16.C20
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/access16.C b/gcc/testsuite/g++.old-deja/g++.jason/access16.C
new file mode 100644
index 000000000..4eb499b63
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.jason/access16.C
@@ -0,0 +1,20 @@
+// { dg-do assemble }
+// Bug: g++ uses the same binfo for the a subobject of c and the a subobject
+// of b, so basetype_paths get bashed improperly.
+
+class a {
+protected:
+ virtual void foo() { } // { dg-bogus "" }
+};
+
+class b : public virtual a {};
+
+class c : public b {
+public:
+ void bar() { b::foo(); } // { dg-bogus "" }
+};
+
+int main() {
+ c test;
+ test.bar();
+}