about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/question_mark_used.rs
blob: 9e204d1e9f3c2e651c185d92b54be86adbd19de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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()?;
    //~^ question_mark_used

    None
}

fn main() {}