summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Bug_2124_Regression/Test.idl
blob: 641ad61bb7b7756b2d458645d612e747e91d4b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * @file Test.idl
 *
 * $Id$
 *
 */

module Test
{   
   typedef string<10> MyString;
   typedef MyString OtherString;

   interface Foo
   {
      void op1( in MyString s );
      void op2( in OtherString s );
   };
};