rust-clippy/tests/ui/ptr_arg.stderr

23 lines
784 B
Text
Raw Normal View History

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.
2017-08-01 15:54:21 +00:00
--> $DIR/ptr_arg.rs:6:14
|
2017-02-08 13:58:07 +00:00
6 | fn do_vec(x: &Vec<i64>) {
2017-09-10 17:32:24 +00:00
| ^^^^^^^^^ help: change this to: `&[i64]`
|
= note: `-D ptr-arg` implied by `-D warnings`
2017-09-10 17:32:24 +00:00
error: writing `&String` instead of `&str` involves a new object where a slice will do.
2017-08-01 15:54:21 +00:00
--> $DIR/ptr_arg.rs:14:14
|
2017-02-08 13:58:07 +00:00
14 | fn do_str(x: &String) {
2017-09-10 17:32:24 +00:00
| ^^^^^^^ help: change this to: `&str`
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.
2017-08-01 15:54:21 +00:00
--> $DIR/ptr_arg.rs:27:18
|
2017-02-08 13:58:07 +00:00
27 | fn do_vec(x: &Vec<i64>);
2017-09-10 17:32:24 +00:00
| ^^^^^^^^^ help: change this to: `&[i64]`
2017-07-03 04:37:30 +00:00
error: aborting due to 3 previous errors