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

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

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