const std = @import("std");
pub fn main() void {
std.debug.print("{}\n", .{@TypeOf(byteProperties)});
}
const Properties = packed struct {
isSpace: bool = false,
};
pub const byteProperties = blk: {
var table = .{Properties{}} ** 256;
table[0].isSpace = true; // error: value stored in comptime field does not match the default value of the field
break :blk table;
};
zig version : 0.14.0-dev.1951+857383689