summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/question_mark_used.stderr
blob: a3f440de80a5dfcd4eeb18a2eb6470a3617e91bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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`
   = help: to override `-D warnings` add `#[allow(clippy::question_mark_used)]`

error: aborting due to previous error