2017-02-07 20:05:30 +00:00
|
|
|
error: useless use of `vec!`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/vec.rs:30:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
30 | 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!`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/vec.rs:33:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
33 | 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!`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/vec.rs:36:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
36 | on_slice(&vec![1, 2]);
|
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/vec.rs:39:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 23:59:59 +00:00
|
|
|
39 | 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!`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/vec.rs:42:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
42 | 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!`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/vec.rs:55:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
55 | 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
|
|
|
|
|