rust-clippy/tests/ui/ptr_arg.stderr

176 lines
4.8 KiB
Text
Raw Normal View History

error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:7:14
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn do_vec(x: &Vec<i64>) {
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^ help: change this to: `&[i64]`
|
= note: `-D clippy::ptr-arg` implied by `-D warnings`
error: writing `&String` instead of `&str` involves a new object where a slice will do
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:16:14
|
2018-12-27 15:57:55 +00:00
LL | fn do_str(x: &String) {
2017-09-10 17:32:24 +00:00
| ^^^^^^^ help: change this to: `&str`
error: writing `&PathBuf` instead of `&Path` involves a new object where a slice will do
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:25:15
|
LL | fn do_path(x: &PathBuf) {
| ^^^^^^^^ help: change this to: `&Path`
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:38:18
|
2018-12-27 15:57:55 +00:00
LL | fn do_vec(x: &Vec<i64>);
2017-09-10 17:32:24 +00:00
| ^^^^^^^^^ help: change this to: `&[i64]`
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:51:14
|
2018-12-27 15:57:55 +00:00
LL | fn cloned(x: &Vec<u8>) -> Vec<u8> {
| ^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: change this to
|
2018-12-27 15:57:55 +00:00
LL | fn cloned(x: &[u8]) -> Vec<u8> {
2021-08-11 14:21:33 +00:00
| ~~~~~
help: change `x.clone()` to
|
2018-12-27 15:57:55 +00:00
LL | let e = x.to_owned();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~
help: change `x.clone()` to
|
2018-12-27 15:57:55 +00:00
LL | x.to_owned()
2017-11-10 07:58:54 +00:00
|
error: writing `&String` instead of `&str` involves a new object where a slice will do
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:60:18
|
2018-12-27 15:57:55 +00:00
LL | fn str_cloned(x: &String) -> String {
| ^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: change this to
|
2018-12-27 15:57:55 +00:00
LL | fn str_cloned(x: &str) -> String {
2021-08-11 14:21:33 +00:00
| ~~~~
help: change `x.clone()` to
|
2018-12-27 15:57:55 +00:00
LL | let a = x.to_string();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~
help: change `x.clone()` to
|
2018-12-27 15:57:55 +00:00
LL | let b = x.to_string();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~
help: change `x.clone()` to
|
2018-12-27 15:57:55 +00:00
LL | x.to_string()
2017-11-10 07:58:54 +00:00
|
error: writing `&PathBuf` instead of `&Path` involves a new object where a slice will do
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:68:19
|
LL | fn path_cloned(x: &PathBuf) -> PathBuf {
| ^^^^^^^^
|
help: change this to
|
LL | fn path_cloned(x: &Path) -> PathBuf {
2021-08-11 14:21:33 +00:00
| ~~~~~
help: change `x.clone()` to
|
LL | let a = x.to_path_buf();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~
help: change `x.clone()` to
|
LL | let b = x.to_path_buf();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~
help: change `x.clone()` to
|
LL | x.to_path_buf()
|
error: writing `&String` instead of `&str` involves a new object where a slice will do
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:76:44
|
2018-12-27 15:57:55 +00:00
LL | fn false_positive_capacity(x: &Vec<u8>, y: &String) {
| ^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: change this to
|
2018-12-27 15:57:55 +00:00
LL | fn false_positive_capacity(x: &Vec<u8>, y: &str) {
2021-08-11 14:21:33 +00:00
| ~~~~
help: change `y.clone()` to
|
2018-12-27 15:57:55 +00:00
LL | let b = y.to_string();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~
help: change `y.as_str()` to
|
2018-12-27 15:57:55 +00:00
LL | let c = y;
2021-08-11 14:21:33 +00:00
| ~
error: using a reference to `Cow` is not recommended
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:90:25
|
2018-12-27 15:57:55 +00:00
LL | fn test_cow_with_ref(c: &Cow<[i32]>) {}
| ^^^^^^^^^^^ help: change this to: `&[i32]`
error: writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used with non-Vec-based slices
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:143:21
|
LL | fn foo_vec(vec: &Vec<u8>) {
| ^^^^^^^^
|
help: change this to
|
LL | fn foo_vec(vec: &[u8]) {
2021-08-11 14:21:33 +00:00
| ~~~~~
help: change `vec.clone()` to
|
LL | let _ = vec.to_owned().pop();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~
help: change `vec.clone()` to
|
LL | let _ = vec.to_owned().clone();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~
error: writing `&PathBuf` instead of `&Path` involves a new object where a slice will do
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:148:23
|
LL | fn foo_path(path: &PathBuf) {
| ^^^^^^^^
|
help: change this to
|
LL | fn foo_path(path: &Path) {
2021-08-11 14:21:33 +00:00
| ~~~~~
help: change `path.clone()` to
|
LL | let _ = path.to_path_buf().pop();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~~~~
help: change `path.clone()` to
|
LL | let _ = path.to_path_buf().clone();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~~~~
error: writing `&PathBuf` instead of `&Path` involves a new object where a slice will do
2021-10-12 14:09:54 +00:00
--> $DIR/ptr_arg.rs:153:21
|
LL | fn foo_str(str: &PathBuf) {
| ^^^^^^^^
|
help: change this to
|
LL | fn foo_str(str: &Path) {
2021-08-11 14:21:33 +00:00
| ~~~~~
help: change `str.clone()` to
|
LL | let _ = str.to_path_buf().pop();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~~~
help: change `str.clone()` to
|
LL | let _ = str.to_path_buf().clone();
2021-08-11 14:21:33 +00:00
| ~~~~~~~~~~~~~~~~~
error: aborting due to 12 previous errors
2018-01-16 16:06:27 +00:00