Files
flatbuffers/tests/fuzzer/seed_codegen/test_union
coder7695 2b107e20c5 [fuzzer] Adds code generation target. (#8795)
* 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>
2025-11-27 15:52:28 +00:00

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;