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