Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_comptime_unwrap_null.zig
pretty
plain
permalink
blame
history
•
7 lines
•
144 B
1
comptime {
2
const optional_number: ?i32 = null;
3
const number = optional_number.?;
4
_ = number;
5
}
6
7
// test_error=unable to unwrap null