office-gobmx/idlc/test/union.idl
Oliver Bolte 756b88f757 INTEGRATION: CWS sdk08 (1.1.74); FILE MERGED
2003/09/16 13:26:57 jsc 1.1.74.1: #111025# correct identifiers
2003-10-20 12:08:44 +00:00

35 lines
448 B
Text

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;
// Union with no default label
union U2 switch(EAlias) {
case E::A : long x;
case E::B : short y;
};
union U3 switch(char) {
case 2 : long x;
case 4 : short y;
};
};
};