summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-9625.rs
blob: a765882b5d8180802c8b82b4410848feca161eda (plain)
1
2
3
4
fn main() {
    let x = &1;
    let _ = &1 < x && x < &10;
}