summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/Bug_2619_Regression.idl
blob: 4d95f523a0e646a9505800a6157dae9573dd301f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

// Test Bug 2619

struct Type_T
{
   string  id;
};

valuetype T_Data_T
{
   public Type_T type;
};

interface Test
{
   typedef Type_T Group;
   Group getGroup();
};