rust/tests/ui/ptr_arg.stderr

87 lines
2.5 KiB
Plaintext
Raw Normal View History

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