2017-09-10 17:32:24 +00:00
|
|
|
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/ptr_arg.rs:15:14
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
15 | fn do_vec(x: &Vec<i64>) {
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^ help: change this to: `&[i64]`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::ptr-arg` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-09-10 17:32:24 +00:00
|
|
|
error: writing `&String` instead of `&str` involves a new object where a slice will do.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/ptr_arg.rs:24:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
24 | fn do_str(x: &String) {
|
2017-09-10 17:32:24 +00:00
|
|
|
| ^^^^^^^ help: change this to: `&str`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-09-10 17:32:24 +00:00
|
|
|
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/ptr_arg.rs:37:18
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
37 | fn do_vec(x: &Vec<i64>);
|
2017-09-10 17:32:24 +00:00
|
|
|
| ^^^^^^^^^ help: change this to: `&[i64]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-09-16 07:10:26 +00:00
|
|
|
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/ptr_arg.rs:50:14
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
50 | fn cloned(x: &Vec<u8>) -> Vec<u8> {
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
help: change this to
|
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
50 | fn cloned(x: &[u8]) -> Vec<u8> {
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^
|
2017-09-20 21:59:23 +00:00
|
|
|
help: change `x.clone()` to
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
51 | let e = x.to_owned();
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2017-09-20 21:59:23 +00:00
|
|
|
help: change `x.clone()` to
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
56 | x.to_owned()
|
2017-11-10 07:58:54 +00:00
|
|
|
|
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
|
|
error: writing `&String` instead of `&str` involves a new object where a slice will do.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/ptr_arg.rs:59:18
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
59 | fn str_cloned(x: &String) -> String {
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
help: change this to
|
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
59 | fn str_cloned(x: &str) -> String {
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^
|
2017-09-20 21:59:23 +00:00
|
|
|
help: change `x.clone()` to
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
60 | let a = x.to_string();
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-09-20 21:59:23 +00:00
|
|
|
help: change `x.clone()` to
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
61 | let b = x.to_string();
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2017-09-20 21:59:23 +00:00
|
|
|
help: change `x.clone()` to
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
64 | x.to_string()
|
2017-11-10 07:58:54 +00:00
|
|
|
|
|
2017-09-16 07:10:26 +00:00
|
|
|
|
2017-09-20 21:59:23 +00:00
|
|
|
error: writing `&String` instead of `&str` involves a new object where a slice will do.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/ptr_arg.rs:67:44
|
2017-09-20 21:59:23 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
67 | fn false_positive_capacity(x: &Vec<u8>, y: &String) {
|
2017-09-20 21:59:23 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
help: change this to
|
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
67 | fn false_positive_capacity(x: &Vec<u8>, y: &str) {
|
2017-09-20 21:59:23 +00:00
|
|
|
| ^^^^
|
|
|
|
help: change `y.clone()` to
|
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
69 | let b = y.to_string();
|
2017-09-20 21:59:23 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
help: change `y.as_str()` to
|
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
70 | let c = y;
|
2017-09-20 21:59:23 +00:00
|
|
|
| ^
|
|
|
|
|
2018-04-05 15:59:35 +00:00
|
|
|
error: using a reference to `Cow` is not recommended.
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/ptr_arg.rs:81:25
|
2018-04-05 15:59:35 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
81 | fn test_cow_with_ref(c: &Cow<[i32]>) {}
|
2018-04-05 15:59:35 +00:00
|
|
|
| ^^^^^^^^^^^ help: change this to: `&[i32]`
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|