2017-02-07 20:05:30 +00:00
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
2017-05-17 15:51:35 +00:00
--> ptr_arg.rs:6:14
2017-02-07 20:05:30 +00:00
|
2017-02-08 13:58:07 +00:00
6 | fn do_vec(x: &Vec<i64>) {
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^
|
2017-05-17 12:19:44 +00:00
= note: `-D ptr-arg` implied by `-D warnings`
2017-02-07 20:05:30 +00:00
error: writing `&String` instead of `&str` involves a new object where a slice will do. Consider changing the type to `&str`
2017-05-17 15:51:35 +00:00
--> ptr_arg.rs:14:14
2017-02-07 20:05:30 +00:00
|
2017-02-08 13:58:07 +00:00
14 | fn do_str(x: &String) {
2017-02-07 20:05:30 +00:00
| ^^^^^^^
2017-05-17 12:19:44 +00:00
|
= note: `-D ptr-arg` implied by `-D warnings`
2017-02-07 20:05:30 +00:00
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
2017-05-17 15:51:35 +00:00
--> ptr_arg.rs:27:18
2017-02-07 20:05:30 +00:00
|
2017-02-08 13:58:07 +00:00
27 | fn do_vec(x: &Vec<i64>);
2017-02-07 20:05:30 +00:00
| ^^^^^^^^^
2017-05-17 12:19:44 +00:00
|
= note: `-D ptr-arg` implied by `-D warnings`
2017-02-07 20:05:30 +00:00
2017-05-26 07:21:54 +00:00
error: aborting due to previous error(s)
2017-02-07 20:05:30 +00:00
2017-05-17 12:19:44 +00:00
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.