Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / IDL_Test / Bug_2616_Regression.idl
blob7906cf11f8f8ac0280491df9758cb7ad4ed28e0d
1 // Test Bug 2616
3 struct AA
5 long x;
6 };
7 struct BB
9 AA data;
11 interface Interface1
13 typedef BB Type;
14 void do_it(in Type value);
16 interface Interface2
18 typedef AA Type;
19 void do_it(in Type value);