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, 0 insertions, 31 deletions
diff --git a/TAO/tests/Bug_1568_Regression/Test.idl b/TAO/tests/Bug_1568_Regression/Test.idl
deleted file mode 100644
index 288bf4aac97..00000000000
--- a/TAO/tests/Bug_1568_Regression/Test.idl
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * @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();
- };
-};