summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/mod-zero.rs
blob: 083716394124a8e0aa1a15dab2e907bda9f3444a (plain)
1
2
3
4
5
6
7
8
9
// run-fail
// error-pattern:attempt to calculate the remainder with a divisor of zero
// ignore-emscripten no processes

#[allow(unconditional_panic)]
fn main() {
    let y = 0;
    let _z = 1 % y;
}