summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/ptr_arg.stderr
blob: 314f23497f9716647785e95e7fcae266156a57c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices.
  --> $DIR/ptr_arg.rs:6:14
   |
LL | fn do_vec(x: &Vec<i64>) {
   |              ^^^^^^^^^ help: change this to: `&[i64]`
   |
   = note: `-D clippy::ptr-arg` implied by `-D warnings`

error: writing `&String` instead of `&str` involves a new object where a slice will do.
  --> $DIR/ptr_arg.rs:15:14
   |
LL | fn do_str(x: &String) {
   |              ^^^^^^^ help: change this to: `&str`

error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices.
  --> $DIR/ptr_arg.rs:28:18
   |
LL |     fn do_vec(x: &Vec<i64>);
   |                  ^^^^^^^^^ help: change this to: `&[i64]`

error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices.
  --> $DIR/ptr_arg.rs:41:14
   |
LL | fn cloned(x: &Vec<u8>) -> Vec<u8> {
   |              ^^^^^^^^
   |
help: change this to
   |
LL | fn cloned(x: &[u8]) -> Vec<u8> {
   |              ^^^^^
help: change `x.clone()` to
   |
LL |     let e = x.to_owned();
   |             ^^^^^^^^^^^^
help: change `x.clone()` to
   |
LL |     x.to_owned()
   |

error: writing `&String` instead of `&str` involves a new object where a slice will do.
  --> $DIR/ptr_arg.rs:50:18
   |
LL | fn str_cloned(x: &String) -> String {
   |                  ^^^^^^^
   |
help: change this to
   |
LL | fn str_cloned(x: &str) -> String {
   |                  ^^^^
help: change `x.clone()` to
   |
LL |     let a = x.to_string();
   |             ^^^^^^^^^^^^^
help: change `x.clone()` to
   |
LL |     let b = x.to_string();
   |             ^^^^^^^^^^^^^
help: change `x.clone()` to
   |
LL |     x.to_string()
   |

error: writing `&String` instead of `&str` involves a new object where a slice will do.
  --> $DIR/ptr_arg.rs:58:44
   |
LL | fn false_positive_capacity(x: &Vec<u8>, y: &String) {
   |                                            ^^^^^^^
   |
help: change this to
   |
LL | fn false_positive_capacity(x: &Vec<u8>, y: &str) {
   |                                            ^^^^
help: change `y.clone()` to
   |
LL |     let b = y.to_string();
   |             ^^^^^^^^^^^^^
help: change `y.as_str()` to
   |
LL |     let c = y;
   |             ^

error: using a reference to `Cow` is not recommended.
  --> $DIR/ptr_arg.rs:72:25
   |
LL | fn test_cow_with_ref(c: &Cow<[i32]>) {}
   |                         ^^^^^^^^^^^ help: change this to: `&[i32]`

error: aborting due to 7 previous errors