blob: da4976a4f7531fe259a587c27c716c8c9a99865b [file] [log] [blame]
enum ABC: int { A, B, C }
table MoreDefaults {
ints: [int] = [];
floats: [float] = [ ];
empty_string: string = "";
some_string: string = "some";
abcs: [ABC] = [];
bools: [bool] = [];
}