mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-14 02:06:16 +01:00
10 lines
151 B
Zig
10 lines
151 B
Zig
export fn f() void {
|
|
var cstr = "Hat";
|
|
cstr[0] = 'W';
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :3:13: error: cannot assign to constant
|