rust/tests/ui/crashes/ice-9625.rs
2022-10-23 15:18:45 +02:00

4 lines
61 B
Rust

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