Files
zig/test/cases/compile_errors/and_on_undefined_value.zig

10 lines
152 B
Zig

comptime {
var a: bool = undefined;
_ = &a;
_ = a and a;
}
// error
//
// :4:9: error: use of undefined value here causes illegal behavior