1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// $Id$ // Test Bug 2616 struct AA { long x; }; struct BB { AA data; }; interface Interface1 { typedef BB Type; void do_it(in Type value); }; interface Interface2 { typedef AA Type; void do_it(in Type value); };