about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-9625.rs
blob: 52117883aa7d617e096f2c7da6d7621324c4a8e8 (plain)
1
2
3
4
5
6
//@ check-pass

fn main() {
    let x = &1;
    let _ = &1 < x && x < &10;
}