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

// https://github.com/rust-lang/rust/issues/114814

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