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 #2303 from jwillemsen/jwi-803
[ACE_TAO.git]
/
TAO
/
tests
/
IDL_Test
/
Bug_2616_Regression.idl
blob
7906cf11f8f8ac0280491df9758cb7ad4ed28e0d
1
// Test Bug 2616
2
3
struct
AA
4
{
5
long
x
;
6
};
7
struct
BB
8
{
9
AA data
;
10
};
11
interface
Interface1
12
{
13
typedef
BB Type
;
14
void
do_it
(
in
Type value
);
15
};
16
interface
Interface2
17
{
18
typedef
AA Type
;
19
void
do_it
(
in
Type value
);
20
};
21