rust/src/test/run-fail/mod-zero.rs
2018-12-25 21:08:33 -07:00

6 lines
125 B
Rust

// error-pattern:attempt to calculate the remainder with a divisor of zero
fn main() {
let y = 0;
let _z = 1 % y;
}