summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl')
-rw-r--r--TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl22
1 files changed, 0 insertions, 22 deletions
diff --git a/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl b/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
deleted file mode 100644
index df5e183c1da..00000000000
--- a/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-
-interface A
-{
- string method1 ();
-};
-
-interface B : A
-{
- string method2 ();
-};
-
-interface C : A
-{
- string method3 ();
-};
-
-interface D : B, C
-{
- string method4 ();
-};
-