summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/Diamond.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Collocation/Diamond.idl')
-rw-r--r--TAO/tests/Collocation/Diamond.idl24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/tests/Collocation/Diamond.idl b/TAO/tests/Collocation/Diamond.idl
deleted file mode 100644
index 0e60b25c52c..00000000000
--- a/TAO/tests/Collocation/Diamond.idl
+++ /dev/null
@@ -1,24 +0,0 @@
-// $Id$
-
-module Diamond
-{
- interface Top
- {
- string shape ();
- };
-
- interface Left : Top
- {
- string color ();
- };
-
- interface Right : Top
- {
- long width ();
- };
-
- interface Buttom : Left, Right
- {
- string name ();
- };
-};