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
/
Any
/
Indirected
/
test.idl
blob
71568ab4e8ea780b72fbaad45d3574102be459e7
1
2
module
Test
3
{
4
struct
RecursiveStruct3
;
5
typedef
sequence
<
RecursiveStruct3
>
RecursiveStructSeq3
;
6
7
union
RecursiveUnion3
switch
(
short
)
8
{
9
case
0
:
short
a
;
10
case
1
:
RecursiveStructSeq3 b
;
11
case
2
:
RecursiveStructSeq3 c
;
12
};
13
struct
RecursiveStruct3
14
{
15
RecursiveUnion3 uni
;
16
};
17
18
};