1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
const S = struct { x: u32, }; fn reassign(s: S) void { s = S{ .x = 2 }; } export fn entry() void { reassign(S{ .x = 3 }); } // error // backend=stage2 // target=native // // :5:5: error: cannot assign to constant