repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
tests
/
IDL_Test
/
Bug_2577_Regression.idl
blob
1175c3f446f90342904c4efc1d7246c1fed35daf
1
// Test Bug 2577
2
3
struct
DateTime_T
4
{
5
short
t
;
6
};
7
8
typedef
DateTime_T WhenLastUpdated_T
;
9
10
valuetype Data_T
11
{
12
// Typedef valuetype member was blocking generation of
13
// SArg specialization for the struct.
14
public
WhenLastUpdated_T whenLastUpdated
;
15
};
16
17
interface
User_T
{
18
DateTime_T getLoginTime
();
19
};
20