]> git.lizzy.rs Git - rust.git/blob - tests/ui/ptr_arg.stderr
rustup and compile-fail -> ui test move
[rust.git] / tests / ui / ptr_arg.stderr
1 error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
2  --> $DIR/ptr_arg.rs:6:14
3   |
4 6 | fn do_vec(x: &Vec<i64>) { //~ERROR writing `&Vec<_>` instead of `&[_]`
5   |              ^^^^^^^^^
6   |
7 note: lint level defined here
8  --> $DIR/ptr_arg.rs:4:9
9   |
10 4 | #![deny(ptr_arg)]
11   |         ^^^^^^^
12
13 error: writing `&String` instead of `&str` involves a new object where a slice will do. Consider changing the type to `&str`
14   --> $DIR/ptr_arg.rs:14:14
15    |
16 14 | fn do_str(x: &String) { //~ERROR writing `&String` instead of `&str`
17    |              ^^^^^^^
18
19 error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices. Consider changing the type to `&[...]`
20   --> $DIR/ptr_arg.rs:27:18
21    |
22 27 |     fn do_vec(x: &Vec<i64>); //~ERROR writing `&Vec<_>`
23    |                  ^^^^^^^^^
24
25 error: aborting due to 3 previous errors
26