zig/test/cases/compile_errors/pointless discard.zig
2022-09-13 10:01:17 -07:00

13 lines
196 B
Zig

export fn foo() void {
var x: i32 = 1234;
x += 1;
_ = x;
}
// error
// backend=stage2
// target=native
//
// :4:9: error: pointless discard of local variable
// :3:5: note: used here