diff options
Diffstat (limited to 'src/test/ui/nll/capture-mut-ref.stderr')
-rw-r--r-- | src/test/ui/nll/capture-mut-ref.stderr | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/nll/capture-mut-ref.stderr b/src/test/ui/nll/capture-mut-ref.stderr new file mode 100644 index 000000000..4898d5692 --- /dev/null +++ b/src/test/ui/nll/capture-mut-ref.stderr @@ -0,0 +1,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 previous error + |