about summary refs log tree commit diff
path: root/tests/ui/numbers-arithmetic/location-mod-by-zero.rs
blob: 6a2e1b158bf7f8bd1c4b269ab1c51dc463ccfff0 (plain)
1
2
3
4
5
6
//@ run-fail
//@ error-pattern:location-mod-by-zero.rs

fn main() {
    let _ = 1 % &0;
}