6b6253016f
rustc now (https://github.com/rust-lang/rust/issues/33525) does not report an error count anymore, because it was not correct in many cases.
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
error: useless use of `vec!`
|
|
--> vec.rs:24:14
|
|
|
|
|
24 | on_slice(&vec![]);
|
|
| ^^^^^^^ help: you can use a slice directly `&[]`
|
|
|
|
|
= note: `-D useless-vec` implied by `-D warnings`
|
|
|
|
error: useless use of `vec!`
|
|
--> vec.rs:27:14
|
|
|
|
|
27 | on_slice(&vec![1, 2]);
|
|
| ^^^^^^^^^^^ help: you can use a slice directly `&[1, 2]`
|
|
|
|
|
= note: `-D useless-vec` implied by `-D warnings`
|
|
|
|
error: useless use of `vec!`
|
|
--> vec.rs:30:14
|
|
|
|
|
30 | on_slice(&vec ![1, 2]);
|
|
| ^^^^^^^^^^^^ help: you can use a slice directly `&[1, 2]`
|
|
|
|
|
= note: `-D useless-vec` implied by `-D warnings`
|
|
|
|
error: useless use of `vec!`
|
|
--> vec.rs:33:14
|
|
|
|
|
33 | on_slice(&vec!(1, 2));
|
|
| ^^^^^^^^^^^ help: you can use a slice directly `&[1, 2]`
|
|
|
|
|
= note: `-D useless-vec` implied by `-D warnings`
|
|
|
|
error: useless use of `vec!`
|
|
--> vec.rs:36:14
|
|
|
|
|
36 | on_slice(&vec![1; 2]);
|
|
| ^^^^^^^^^^^ help: you can use a slice directly `&[1; 2]`
|
|
|
|
|
= note: `-D useless-vec` implied by `-D warnings`
|
|
|
|
error: useless use of `vec!`
|
|
--> vec.rs:49:14
|
|
|
|
|
49 | for a in vec![1, 2, 3] {
|
|
| ^^^^^^^^^^^^^ help: you can use a slice directly `&[1, 2, 3]`
|
|
|
|
|
= note: `-D useless-vec` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
To learn more, run the command again with --verbose.
|