Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Collocation / Diamond.idl
blob8b0072e4a90a5199f950b4ebf62cf76f8dd793a7
1 module Diamond
3 interface Top
5 string shape ();
6 };
8 interface Left : Top
10 string color ();
13 interface Right : Top
15 long width ();
18 interface Buttom : Left, Right
20 string name ();