Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Bug_2126_Regression / Test.idl
blob5e241dc7c0e63ade78f1ca3f77bf8625f29bb82c
1 /**
2 * @file Test.idl
3 */
5 union FirstUnion switch (boolean) {
6 case TRUE :
7 long first_union_foo;
8 case FALSE :
9 long first_union_bar;
12 typedef FirstUnion FirstUnionArray[2];
14 struct MyStruct {
15 FirstUnionArray my_struct_foo;
18 union SecondUnion switch (boolean) {
19 case TRUE :
20 MyStruct second_union_struct_member;
21 case FALSE :
22 long wibble;