zig/test/cases/x86_64-macos/comptime_var.0.zig
2022-10-20 20:11:00 +03:00

13 lines
262 B
Zig

pub fn main() void {
var a: u32 = 0;
comptime var b: u32 = 0;
if (a == 0) b = 3;
}
// error
// output_mode=Exe
// target=x86_64-macos
//
// :4:19: error: store to comptime variable depends on runtime condition
// :4:11: note: runtime condition here