mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-03 08:49:08 +00:00
5 lines
61 B
Rust
5 lines
61 B
Rust
|
fn main() {
|
||
|
let x = &1;
|
||
|
let _ = &1 < x && x < &10;
|
||
|
}
|