flatc-fork 0.6.0+25.12.19-2026-02-06-03fffb2

Vendored executable of flatbuffer's `flatc` (maintained fork).
Documentation
namespace Test;

union Shape {
  Circle,
  Square,
}

table Circle {
  radius: float;
}

table Square {
  side: float;
}

table Root {
  shape: Shape;
}

root_type Root;