const State = struct
const State = struct { block_id: ?u32, abbrev_id_width: u6, abbrevs: Abbrev.Store, fn deinit(state: *State, allocator: std.mem.Allocator) void { state.abbrevs.deinit(allocator); state.* = undefined; } }