1 2 3 4 5 6 7
// run-fail // error-pattern:attempt to calculate the remainder with a divisor of zero #[allow(unconditional_panic)] fn main() { let y = 0; let _z = 1 % y; }