aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.gb/sig29.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.gb/sig29.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.gb/sig29.C46
1 files changed, 46 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.gb/sig29.C b/gcc/testsuite/g++.old-deja/g++.gb/sig29.C
new file mode 100644
index 00000000000..e5c5e392643
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.gb/sig29.C
@@ -0,0 +1,46 @@
+// Special g++ Options: -fhandle-signatures
+// GROUPS passed gb sigptr multiple-inheritance
+// Test calling virtual function from MI class through signature pointer.
+
+extern "C"
+{
+ int printf (char *, ...);
+}
+
+class C
+{
+ char * text;
+public:
+ C () { text = "PA"; }
+ virtual char * f (void) { return text; }
+};
+
+class D
+{
+ char * text;
+public:
+ D () { text = "SS"; }
+ virtual char * g (void) { return text; }
+};
+
+class E : public C, public D
+{
+public:
+ E () : C (), D () { }
+};
+
+signature S
+{
+ char * f (void);
+ char * g (void);
+};
+
+int main (void)
+{
+ E a;
+ S * p = &a;
+
+ printf ("%s%s\n", p->f (), p->g ());
+
+ return 0;
+}