11 lines
154 B
Zig
11 lines
154 B
Zig
export fn f() void {
|
|
var cstr = "Hat";
|
|
cstr[0] = 'W';
|
|
}
|
|
|
|
// error
|
|
// backend=stage2
|
|
// target=native
|
|
//
|
|
// :3:9: error: cannot assign to constant
|