1comptime {
2 const a: u32 = 10;
3 const b: u32 = 3;
4 const c = @divExact(a, b);
5 _ = c;
6}
7
8// test_error=exact division produced remainder