Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
and_on_undefined_value.zig
pretty
plain
permalink
blame
history
•
9 lines
•
152 B
1
comptime {
2
var a: bool = undefined;
3
_ = &a;
4
_ = a and a;
5
}
6
7
// error
8
//
9
// :4:9: error: use of undefined value here causes illegal behavior