blob: 82f0d3250407741d382ab89ee4fc444cc5b559a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error: the `?` operator was used
--> tests/ui/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`
= help: to override `-D warnings` add `#[allow(clippy::question_mark_used)]`
error: aborting due to 1 previous error
|