17 lines
261 B
Plaintext
17 lines
261 B
Plaintext
|
namespace union_value_collsion;
|
||
|
|
||
|
table IntValue {
|
||
|
value:int;
|
||
|
}
|
||
|
|
||
|
union Value { IntValue }
|
||
|
|
||
|
union Other { IntValue }
|
||
|
|
||
|
// This table tests collsions of Unions and fields named value.
|
||
|
table Collision {
|
||
|
some_value : Value;
|
||
|
value : Other;
|
||
|
}
|
||
|
|
||
|
root_type Collision;
|