summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/needless_option_take.stderr
blob: cb3bf015b369d811634894efd63cb298eb171fd6 (plain)
1
2
3
4
5
6
7
8
9
10
error: called `Option::take()` on a temporary value
  --> $DIR/needless_option_take.rs:14:5
   |
LL |     x.as_ref().take();
   |     ^^^^^^^^^^^^^^^^^ help: try: `x.as_ref()`
   |
   = note: `-D clippy::needless-option-take` implied by `-D warnings`

error: aborting due to previous error