rust/tests/ui/question_mark_used.rs
2023-02-25 19:28:50 -05:00

15 lines
241 B
Rust

// non rustfixable
#![allow(unreachable_code)]
#![allow(dead_code)]
#![warn(clippy::question_mark_used)]
fn other_function() -> Option<i32> {
Some(32)
}
fn my_function() -> Option<i32> {
other_function()?;
None
}
fn main() {}