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
Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git]
/
TAO
/
tests
/
IDL_Test
/
Bug_3312_Regression.idl
blob
3d1e480b534d2a96b6d4fb2cb9d8d81c8d5f131b
1
module
CallMe
2
{
3
enum
Colors
{
Red
,
Green
,
Blue
};
4
5
union
YourColorBaby
switch
(
enum
ColorMe
{
Red
,
Blue
})
6
{
7
case
Red
:
enum
Val
{
one
,
two
}
c_1
;
8
case
Blue
:
long
c_2
;
9
};
10
11
union
YourCar
switch
(
enum
ColorMe
{
Green
,
Pink
})
12
{
13
case
Green
:
short
c_1
;
14
case
Pink
:
short
c_2
;
15
};
16
};