blob: 434927b8413bc6b009c311625f3fd80c0ef6c825 [file] [log] [blame]
enum AB:byte (private) {
A,
B,
}
struct Object (private) {
value: int;
}
union Any (private) { Game, Annotations }
table Game (private) {
value: int;
}
table Annotations (private) {
value: int;
}