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

// Test Bug 2577

struct DateTime_T
{
  short t;
};

typedef DateTime_T WhenLastUpdated_T;

valuetype Data_T
{
  // Typedef valuetype member was blocking generation of
  // SArg specialization for the struct.
  public WhenLastUpdated_T whenLastUpdated;
};

interface User_T {
  DateTime_T getLoginTime();
};