aboutsummaryrefslogtreecommitdiff
path: root/flatcc/samples/bugreport/eclectic.fbs
blob: ad507e712dbcc0546af5a0c56ef348a13694f1ea (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Eclectic;

enum Fruit : byte { Banana = -1, Orange = 42 }
table FooBar {
    meal      : Fruit = Banana;
    density   : long (deprecated);
    say       : string;
    height    : short;
}
file_identifier "NOOB";
root_type FooBar;