Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / orbsvcs / tests / InterfaceRepo / Union_Forward_Test / test.idl
blobac8020ac93a4576f10fbc4f3ec5e32b52ae43284
1 module IFR_Test
4 union test;
6 typedef sequence<test> test_seq;
8 union test switch (short)
10 case 0 : short x;
11 case 1 : test_seq seq;
12 default : string s;
15 interface test_if
17 attribute test foo;