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