blob: 2f4ed12e2d6edd525a2c95fdb70c2a34bf9a666b [file] [log] [blame]
namespace UnionUnderlyingType;
table A {
a: int;
}
table B {
b: string;
}
table C {
c: bool;
}
union ABC: int { A = 555, B = 666, C = 777}
table D {
test_union: ABC;
test_vector_of_union: [ABC];
}