2017-02-07 20:05:30 +00:00
|
|
|
error: useless use of `vec!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:31: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!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:33:18
|
2021-04-05 11:27:39 +00:00
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![]);
|
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&mut []`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-08 17:05:08 +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!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:37:18
|
2021-04-05 11:27:39 +00:00
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1, 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1, 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:39: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!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:41:18
|
2021-04-05 11:27:39 +00:00
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1, 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1, 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:43: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!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:45:18
|
2021-04-05 11:27:39 +00:00
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1, 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1, 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:47: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!`
|
2023-06-08 17:05:08 +00:00
|
|
|
--> $DIR/vec.rs:49:18
|
2021-04-05 11:27:39 +00:00
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![1; 2]);
|
|
|
|
| ^^^^^^^^^^^^^^^ help: you can use a slice directly: `&mut [1; 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-12 14:04:34 +00:00
|
|
|
--> $DIR/vec.rs:75:19
|
|
|
|
|
|
|
|
|
LL | let _x: i32 = vec![1, 2, 3].iter().sum();
|
|
|
|
| ^^^^^^^^^^^^^ help: you can use an array directly: `[1, 2, 3]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:78:17
|
2023-06-06 20:56:57 +00:00
|
|
|
|
|
|
|
|
LL | let mut x = vec![1, 2, 3];
|
|
|
|
| ^^^^^^^^^^^^^ help: you can use an array directly: `[1, 2, 3]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-12 14:04:34 +00:00
|
|
|
--> $DIR/vec.rs:84:22
|
2023-06-06 20:56:57 +00:00
|
|
|
|
|
|
|
|
LL | let _x: &[i32] = &vec![1, 2, 3];
|
|
|
|
| ^^^^^^^^^^^^^^ help: you can use a slice directly: `&[1, 2, 3]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-12 14:04:34 +00:00
|
|
|
--> $DIR/vec.rs:86:14
|
2023-06-06 20:56:57 +00:00
|
|
|
|
|
|
|
|
LL | for _ in vec![1, 2, 3] {}
|
2023-06-08 17:05:08 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: you can use an array directly: `[1, 2, 3]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-07-03 11:40:33 +00:00
|
|
|
--> $DIR/vec.rs:124:20
|
|
|
|
|
|
|
|
|
LL | for _string in vec![repro!(true), repro!(null)] {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can use an array directly: `[repro!(true), repro!(null)]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-07-03 16:13:01 +00:00
|
|
|
--> $DIR/vec.rs:141:18
|
|
|
|
|
|
|
|
|
LL | in_macro!(1, vec![1, 2], vec![1; 2]);
|
|
|
|
| ^^^^^^^^^^ help: you can use an array directly: `[1, 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:141:30
|
|
|
|
|
|
|
|
|
LL | in_macro!(1, vec![1, 2], vec![1; 2]);
|
|
|
|
| ^^^^^^^^^^ help: you can use an array directly: `[1; 2]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:160:14
|
2023-06-08 17:05:08 +00:00
|
|
|
|
|
|
|
|
LL | for a in vec![1, 2, 3] {
|
|
|
|
| ^^^^^^^^^^^^^ help: you can use an array directly: `[1, 2, 3]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-07-03 16:13:01 +00:00
|
|
|
--> $DIR/vec.rs:164:14
|
2023-06-08 17:05:08 +00:00
|
|
|
|
|
|
|
|
LL | for a in vec![String::new(), String::new()] {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can use an array directly: `[String::new(), String::new()]`
|
2023-06-06 20:56:57 +00:00
|
|
|
|
2023-07-03 16:13:01 +00:00
|
|
|
error: aborting due to 19 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|