]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/mut_reference.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / mut_reference.stderr
index 52e48347795238c2c5cd33b953aa676a2015c951..1fe31e26f6ead858c7c58652c20c01dc0da534df 100644 (file)
@@ -1,25 +1,21 @@
-error: The function/method "takes_an_immutable_reference" doesn't need a mutable reference
-  --> $DIR/mut_reference.rs:22:34
+error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
+  --> $DIR/mut_reference.rs:26:34
    |
-22 |     takes_an_immutable_reference(&mut 42); //~ERROR The function/method "takes_an_immutable_reference" doesn't need a mutable reference
+LL |     takes_an_immutable_reference(&mut 42);
    |                                  ^^^^^^^
    |
-note: lint level defined here
-  --> $DIR/mut_reference.rs:19:8
-   |
-19 | #[deny(unnecessary_mut_passed)]
-   |        ^^^^^^^^^^^^^^^^^^^^^^
+   = 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/method `as_ptr` doesn't need a mutable reference
+  --> $DIR/mut_reference.rs:28:12
    |
-24 |     as_ptr(&mut 42); //~ERROR The function/method "as_ptr" doesn't need a mutable reference
+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 function/method `takes_an_immutable_reference` doesn't need a mutable reference
+  --> $DIR/mut_reference.rs:32:44
    |
-28 |     my_struct.takes_an_immutable_reference(&mut 42); //~ERROR The function/method "takes_an_immutable_reference" doesn't need a mutable reference
+LL |     my_struct.takes_an_immutable_reference(&mut 42);
    |                                            ^^^^^^^
 
 error: aborting due to 3 previous errors