mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-19 03:20:38 +00:00

remove useless ?s (clippy::needless_question_marks) Example code: ```rust fn opts() -> Option<String> { let s: Option<String> = Some(String::new()); Some(s?) // this can just be "s" } ```