about summary refs log tree commit diff
path: root/src/test/run-fail/mod-zero.rs
blob: ac2959fcd38535964a29fabd42a7fb1f426df5ef (plain)
1
2
3
4
5
6
// error-pattern:attempt to calculate the remainder with a divisor of zero

fn main() {
    let y = 0;
    let _z = 1 % y;
}