rust/clippy_tests/examples/mut_reference.stderr
2017-07-03 12:37:30 +08:00

24 lines
779 B
Text

error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
--> mut_reference.rs:22:34
|
22 | takes_an_immutable_reference(&mut 42);
| ^^^^^^^
|
= note: `-D unnecessary-mut-passed` implied by `-D warnings`
error: The function/method `as_ptr` doesn't need a mutable reference
--> mut_reference.rs:24:12
|
24 | as_ptr(&mut 42);
| ^^^^^^^
error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
--> mut_reference.rs:28:44
|
28 | my_struct.takes_an_immutable_reference(&mut 42);
| ^^^^^^^
error: aborting due to 3 previous errors
To learn more, run the command again with --verbose.