2017-02-07 20:05:30 +00:00
|
|
|
error: useless use of `vec!`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/vec.rs:24:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
|
24 | 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
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D useless-vec` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/vec.rs:27:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 15:07:49 +00:00
|
|
|
27 | 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!`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/vec.rs:30:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 15:07:49 +00:00
|
|
|
30 | 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!`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/vec.rs:33:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 15:07:49 +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!`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/vec.rs:36:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 15:07:49 +00:00
|
|
|
36 | 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!`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/vec.rs:49:14
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 15:07:49 +00:00
|
|
|
49 | 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
|
|
|
|
|