Files
flatbuffers/tests/fuzzer/seed_codegen/complex_schema
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

24 lines
290 B
Plaintext

namespace Example;
enum Status:byte { Active, Inactive, Pending }
struct Point {
x:int;
y:int;
}
table User {
id:uint;
name:string;
points:[Point];
status:Status = Active;
metadata:[string];
}
table Group {
name:string;
users:[User];
leader:User;
}
root_type Group;