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