]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/mut_reference.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / mut_reference.stderr
index 6708bca8b2eeab36bba51d0ff762ac3e7f62825b..062d30b262c1be2dc62988f12e535e70972afa7b 100644 (file)
@@ -1,20 +1,22 @@
-error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
-  --> $DIR/mut_reference.rs:22:34
+error: the function `takes_an_immutable_reference` doesn't need a mutable reference
+  --> $DIR/mut_reference.rs:17:34
    |
-22 |     takes_an_immutable_reference(&mut 42);
+LL |     takes_an_immutable_reference(&mut 42);
    |                                  ^^^^^^^
    |
-   = note: `-D unnecessary-mut-passed` implied by `-D warnings`
+   = note: `-D clippy::unnecessary-mut-passed` implied by `-D warnings`
 
-error: The function/method `as_ptr` doesn't need a mutable reference
-  --> $DIR/mut_reference.rs:24:12
+error: the function `as_ptr` doesn't need a mutable reference
+  --> $DIR/mut_reference.rs:19:12
    |
-24 |     as_ptr(&mut 42);
+LL |     as_ptr(&mut 42);
    |            ^^^^^^^
 
-error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
-  --> $DIR/mut_reference.rs:28:44
+error: the method `takes_an_immutable_reference` doesn't need a mutable reference
+  --> $DIR/mut_reference.rs:23:44
    |
-28 |     my_struct.takes_an_immutable_reference(&mut 42);
+LL |     my_struct.takes_an_immutable_reference(&mut 42);
    |                                            ^^^^^^^
 
+error: aborting due to 3 previous errors
+