rust/tests/ui/ptr_arg.stderr

87 lines
2.5 KiB
Plaintext
Raw Normal View History

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