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