Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / IDL_Test / Bug_2577_Regression.idl
blob1175c3f446f90342904c4efc1d7246c1fed35daf
1 // Test Bug 2577
3 struct DateTime_T
5 short t;
6 };
8 typedef DateTime_T WhenLastUpdated_T;
10 valuetype Data_T
12 // Typedef valuetype member was blocking generation of
13 // SArg specialization for the struct.
14 public WhenLastUpdated_T whenLastUpdated;
17 interface User_T {
18 DateTime_T getLoginTime();