mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 08:05:12 +00:00
27 lines
978 B
Plaintext
27 lines
978 B
Plaintext
|
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
|
||
|
--> $DIR/ptr_arg.rs:6:14
|
||
|
|
|
||
|
6 | fn do_vec(x: &Vec<i64>) { //~ERROR writing `&Vec<_>` instead of `&[_]`
|
||
|
| ^^^^^^^^^
|
||
|
|
|
||
|
note: lint level defined here
|
||
|
--> $DIR/ptr_arg.rs:4:9
|
||
|
|
|
||
|
4 | #![deny(ptr_arg)]
|
||
|
| ^^^^^^^
|
||
|
|
||
|
error: writing `&String` instead of `&str` involves a new object where a slice will do. Consider changing the type to `&str`
|
||
|
--> $DIR/ptr_arg.rs:14:14
|
||
|
|
|
||
|
14 | fn do_str(x: &String) { //~ERROR writing `&String` instead of `&str`
|
||
|
| ^^^^^^^
|
||
|
|
||
|
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
|
||
|
--> $DIR/ptr_arg.rs:27:18
|
||
|
|
|
||
|
27 | fn do_vec(x: &Vec<i64>); //~ERROR writing `&Vec<_>`
|
||
|
| ^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|