mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
10 lines
190 B
Rust
10 lines
190 B
Rust
//@ run-fail
|
|
//@ error-pattern:attempt to calculate the remainder with a divisor of zero
|
|
//@ needs-subprocess
|
|
|
|
#[allow(unconditional_panic)]
|
|
fn main() {
|
|
let y = 0;
|
|
let _z = 1 % y;
|
|
}
|