Sign in
◑
Theme
rust
/
rust
/
refs/heads/main
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
question_mark_used.rs
blob: 978c4d7bf171dff2c074b1d1e39ae0c2e4bb8c84 [
file
] [
edit
]
// non rustfixable
#![
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
()
{}