summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/Bug_2619_Regression.idl
blob: 223c77a33cdb189f9a730dadd4fb7a78c30ff129 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test Bug 2619

struct Type_T
{
   string  id;
};

valuetype T_Data_T
{
   public Type_T type;
};

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