summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/wrong_self_conventions_mut.stderr
blob: 8665d8dc9a9dea4f7b1ed03b3b5a26084fdf11d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: methods with the following characteristics: (`to_*` and `self` type is not `Copy`) usually take `self` by reference
  --> $DIR/wrong_self_conventions_mut.rs:14:24
   |
LL |         pub fn to_many(&mut self) -> Option<&mut [T]> {
   |                        ^^^^^^^^^
   |
   = note: `-D clippy::wrong-self-convention` implied by `-D warnings`
   = help: consider choosing a less ambiguous name

error: methods with the following characteristics: (`to_*` and `*_mut`) usually take `self` by mutable reference
  --> $DIR/wrong_self_conventions_mut.rs:22:28
   |
LL |         pub fn to_many_mut(&self) -> Option<&[T]> {
   |                            ^^^^^
   |
   = help: consider choosing a less ambiguous name

error: aborting due to 2 previous errors