blob: 1e3f1f899d08dfe4a72b38f59ecde3bdaf8c27aa [file] [log] [blame]
namespace Test;
union Shape {
Circle,
Square,
}
table Circle {
radius: float;
}
table Square {
side: float;
}
table Root {
shape: Shape;
}
root_type Root;