rust/src/test/run-fail/mod-zero.rs

6 lines
77 B
Rust
Raw Normal View History

// error-pattern:modulo zero
fn main() {
let y = 0;
let z = 1 % y;
}