aboutsummaryrefslogtreecommitdiff
path: root/samples/bugreport/eclectic.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/bugreport/eclectic.fbs')
1 files changed, 11 insertions, 0 deletions
diff --git a/samples/bugreport/eclectic.fbs b/samples/bugreport/eclectic.fbs
new file mode 100644
index 0000000..ad507e7
--- /dev/null
+++ b/samples/bugreport/eclectic.fbs
@@ -0,0 +1,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;