summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/capture-mut-ref.stderr
blob: d76e031466d4f617f4a8982c6a3055397b68a973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: variable does not need to be mutable
  --> $DIR/capture-mut-ref.rs:9:9
   |
LL |     let mut x = &mut 0;
   |         ----^
   |         |
   |         help: remove this `mut`
   |
note: the lint level is defined here
  --> $DIR/capture-mut-ref.rs:6:9
   |
LL | #![deny(unused_mut)]
   |         ^^^^^^^^^^

error: aborting due to 1 previous error