]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/mut_reference.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / mut_reference.stderr
1 error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
2   --> mut_reference.rs:22:34
3    |
4 22 |     takes_an_immutable_reference(&mut 42);
5    |                                  ^^^^^^^
6    |
7    = note: `-D unnecessary-mut-passed` implied by `-D warnings`
8
9 error: The function/method `as_ptr` doesn't need a mutable reference
10   --> mut_reference.rs:24:12
11    |
12 24 |     as_ptr(&mut 42);
13    |            ^^^^^^^
14    |
15    = note: `-D unnecessary-mut-passed` implied by `-D warnings`
16
17 error: The function/method `takes_an_immutable_reference` doesn't need a mutable reference
18   --> mut_reference.rs:28:44
19    |
20 28 |     my_struct.takes_an_immutable_reference(&mut 42);
21    |                                            ^^^^^^^
22    |
23    = note: `-D unnecessary-mut-passed` implied by `-D warnings`
24
25 error: aborting due to previous error(s)
26
27
28 To learn more, run the command again with --verbose.