office-gobmx/idlc/test/union.idl

36 lines
448 B
Text
Raw Normal View History

2001-03-15 05:25:06 -06:00
module idlc
{
module test
{
union UnionTest switch (long) {
case 1: long x;
case 2: byte y;
case 3: string z;
case 4:
case 5: short w;
case 6: long array[ 10 ][ 20 ];
case 7: sequence<long> seq;
default: any a;
};
typedef enum E {
A,
B
} EAlias;
2001-03-15 05:25:06 -06:00
// Union with no default label
union U2 switch(EAlias) {
2001-03-15 05:25:06 -06:00
case E::A : long x;
case E::B : short y;
};
union U3 switch(char) {
case 2 : long x;
case 4 : short y;
};
};
};