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