rust/tests/ui/ptr_arg.stderr

23 lines
808 B
Plaintext
Raw Normal View History

error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
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>) {
| ^^^^^^^^^
|
= note: `-D ptr-arg` implied by `-D warnings`
error: writing `&String` instead of `&str` involves a new object where a slice will do. Consider changing the type to `&str`
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) {
| ^^^^^^^
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
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-07-02 23:37:30 -05:00
error: aborting due to 3 previous errors