Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
doc
langref
test_comptime_division_by_zero.zig
pretty
plain
permalink
blame
history
•
8 lines
•
121 B
1
comptime {
2
const a: i32 = 1;
3
const b: i32 = 0;
4
const c = a / b;
5
_ = c;
6
}
7
8
// test_error=division by zero