5 lines
77 B
Rust
5 lines
77 B
Rust
// error-pattern:modulo zero
|
|
fn main() {
|
|
let y = 0;
|
|
let z = 1 % y;
|
|
}
|