mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +00:00
* adds code generation fuzzer target. * add buffer verification * add table verification in codegen fuzzer --------- Co-authored-by: Björn Harrtell <bjornharrtell@users.noreply.github.com>
20 lines
169 B
Plaintext
20 lines
169 B
Plaintext
namespace Test;
|
|
|
|
union Shape {
|
|
Circle,
|
|
Square,
|
|
}
|
|
|
|
table Circle {
|
|
radius: float;
|
|
}
|
|
|
|
table Square {
|
|
side: float;
|
|
}
|
|
|
|
table Root {
|
|
shape: Shape;
|
|
}
|
|
|
|
root_type Root; |