mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
311 B
Text
11 lines
311 B
Text
error: question mark operator was used
|
|
--> $DIR/question_mark_used.rs:11:5
|
|
|
|
|
LL | other_function()?;
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider using a custom macro or match expression
|
|
= note: `-D clippy::question-mark-used` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|