aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/reassign_to_struct_parameter.zig
blob: 7840a8341363bab3c5b316a6c9cccd93288b6b85 (plain)
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