Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_2122_Regression / Test.idl
blobe459fe09c9f053448cb7eec99b303997f0ba1501
1 /**
2 * @file Test.idl
3 */
5 module Test
7 typedef string<10> MyStringType;
8 typedef string<10> MyOtherStringType; // Note: SAME LENGTH
10 interface Foo
12 void op1( in MyStringType s);
13 void op2( in MyOtherStringType s);
17 module Foo
19 module One
21 typedef string<40> MyString;
23 interface Whatever
25 void someOp( in MyString s);
29 module Two
31 typedef string<100> MyString; // Same name, different size!
33 interface WhoCares
35 void someOp( in MyString s);
39 module Three
41 typedef string<100> MyString; // Same name, same size!
43 interface WhoCares
45 void someOp( in MyString s);