2017-02-07 20:05:30 +00:00
|
|
|
error: useless use of `vec!`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/vec.rs:23:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | on_slice(&vec![]);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^ help: you can use a slice directly: `&[]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::useless-vec` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/vec.rs:26:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | on_slice(&vec![1, 2]);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/vec.rs:29:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | on_slice(&vec![1, 2]);
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/vec.rs:32:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | on_slice(&vec!(1, 2));
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/vec.rs:35:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | on_slice(&vec![1; 2]);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1; 2]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/vec.rs:48:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | for a in vec![1, 2, 3] {
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2, 3]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|