summaryrefslogtreecommitdiff
path: root/tests/Bug_2124_Regression/Test.idl
blob: 4725a402aff656b11ae3756767b55a217b668fca (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 );
   };
};