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