rust/tests/ui/mut_reference.stderr

23 lines
748 B
Text
Raw Normal View History

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