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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/ptr_arg.rs:6:14
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/ptr_arg.rs:15:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/ptr_arg.rs:28:18
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/ptr_arg.rs:41:14
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn cloned(x: &Vec<u8>) -> Vec<u8> {
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
help: change this to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
LL | 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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/ptr_arg.rs:50:18
|
2017-09-16 07:10:26 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn str_cloned(x: &String) -> String {
|
2017-09-16 07:10:26 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
help: change this to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
LL | 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-27 15:57:55 +00:00
|
|
|
LL | 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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/ptr_arg.rs:58:44
|
2017-09-20 21:59:23 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn false_positive_capacity(x: &Vec<u8>, y: &String) {
|
2017-09-20 21:59:23 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
help: change this to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn false_positive_capacity(x: &Vec<u8>, y: &str) {
|
2017-09-20 21:59:23 +00:00
|
|
|
| ^^^^
|
|
|
|
help: change `y.clone()` to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let b = y.to_string();
|
2017-09-20 21:59:23 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
help: change `y.as_str()` to
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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.
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/ptr_arg.rs:72:25
|
2018-04-05 15:59:35 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
|
|
|