• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1namespace union_value_collsion;
2
3table IntValue {
4	value:int;
5}
6table Collide {
7	collide: string (key);
8	value: string;
9}
10
11union Value { IntValue }
12
13union Other { IntValue }
14
15// This table tests collsions of Unions and fields named value.
16table Collision {
17  some_value : Value;
18  value : Other;
19  collide : [Collision];
20}
21
22root_type Collision;