mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-06-06 15:49:43 -04:00
11 lines
150 B
Zig
11 lines
150 B
Zig
export fn f() void {
|
|
var cstr = "Hat";
|
|
cstr[0] = 'W';
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :3:7: error: cannot assign to constant
|