2017-02-07 14:05:30 -06:00
|
|
|
error: useless use of `vec!`
|
2021-04-05 06:27:39 -05:00
|
|
|
--> $DIR/vec.rs:28:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | on_slice(&vec![]);
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^ help: you can use a slice directly: `&[]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::useless-vec` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2021-04-05 06:27:39 -05:00
|
|
|
--> $DIR/vec.rs:30:18
|
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![]);
|
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&mut []`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:32:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | on_slice(&vec![1, 2]);
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2021-04-05 06:27:39 -05:00
|
|
|
--> $DIR/vec.rs:34:18
|
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1, 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1, 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:36:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | on_slice(&vec![1, 2]);
|
2018-12-09 23:27:19 -06:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2021-04-05 06:27:39 -05:00
|
|
|
--> $DIR/vec.rs:38:18
|
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1, 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1, 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:40:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | on_slice(&vec!(1, 2));
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2021-04-05 06:27:39 -05:00
|
|
|
--> $DIR/vec.rs:42:18
|
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1, 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1, 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:44:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | on_slice(&vec![1; 2]);
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&[1; 2]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2021-04-05 06:27:39 -05:00
|
|
|
--> $DIR/vec.rs:46:18
|
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1; 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1; 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:63:14
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for a in vec![1, 2, 3] {
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2, 3]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-04-05 06:27:39 -05:00
|
|
|
error: aborting due to 11 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|