summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1568_Regression/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1568_Regression/Test.idl')
-rw-r--r--TAO/tests/Bug_1568_Regression/Test.idl31
1 files changed, 31 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1568_Regression/Test.idl b/TAO/tests/Bug_1568_Regression/Test.idl
new file mode 100644
index 00000000000..288bf4aac97
--- /dev/null
+++ b/TAO/tests/Bug_1568_Regression/Test.idl
@@ -0,0 +1,31 @@
+/**
+ * @file Test.idl
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@atdesk.com>
+ */
+module Foo
+{
+ module Bar
+ {
+ interface A
+ {
+ void op1();
+ void op2();
+ };
+
+ interface B
+ {
+ void op3();
+ };
+ };
+};
+
+module Baz
+{
+ interface C : Foo::Bar::A, Foo::Bar::B
+ {
+ void op4();
+ };
+};