mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
6 lines
82 B
Rust
6 lines
82 B
Rust
|
#![warn(clippy::ref_option_ref)]
|
||
|
|
||
|
fn main() {
|
||
|
let x: &Option<&u32> = &None;
|
||
|
}
|