rust-clippy/tests/ui/mut_reference.stderr

23 lines
748 B
Text
Raw Normal View History

2017-06-04 21:28:01 +00:00
error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
2017-08-01 15:54:21 +00:00
--> $DIR/mut_reference.rs:22:34
|
2017-02-08 13:58:07 +00:00
22 | takes_an_immutable_reference(&mut 42);
| ^^^^^^^
|
= note: `-D clippy::unnecessary-mut-passed` implied by `-D warnings`
2017-06-04 21:28:01 +00:00
error: The function/method `as_ptr` doesn't need a mutable reference
2017-08-01 15:54:21 +00:00
--> $DIR/mut_reference.rs:24:12
|
2017-02-08 13:58:07 +00:00
24 | as_ptr(&mut 42);
| ^^^^^^^
2017-06-04 21:28:01 +00:00
error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
2017-08-01 15:54:21 +00:00
--> $DIR/mut_reference.rs:28:44
|
2017-02-08 13:58:07 +00:00
28 | my_struct.takes_an_immutable_reference(&mut 42);
| ^^^^^^^
2018-01-16 16:06:27 +00:00
error: aborting due to 3 previous errors