2017-02-07 14:05:30 -06:00
|
|
|
error: useless use of `vec!`
|
2023-06-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:31: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!`
|
2023-06-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:33:18
|
2021-04-05 06:27:39 -05:00
|
|
|
|
|
|
|
|
LL | on_mut_slice(&mut vec![]);
|
|
|
|
| ^^^^^^^^^^^ help: you can use a slice directly: `&mut []`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
2023-06-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:35: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!`
|
2023-06-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:37:18
|
2021-04-05 06:27:39 -05: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 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:39: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!`
|
2023-06-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:41:18
|
2021-04-05 06:27:39 -05: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 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:43: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!`
|
2023-06-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:45:18
|
2021-04-05 06:27:39 -05: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 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:47: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!`
|
2023-06-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:49:18
|
2021-04-05 06:27:39 -05: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 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:75:17
|
2023-06-06 15:56:57 -05: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-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:81:22
|
2023-06-06 15:56:57 -05: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-08 12:05:08 -05:00
|
|
|
--> $DIR/vec.rs:83:14
|
2023-06-06 15:56:57 -05:00
|
|
|
|
|
|
|
|
LL | for _ in vec![1, 2, 3] {}
|
2023-06-08 12:05:08 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: you can use an array directly: `[1, 2, 3]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:117:14
|
|
|
|
|
|
|
|
|
LL | for a in vec![1, 2, 3] {
|
|
|
|
| ^^^^^^^^^^^^^ help: you can use an array directly: `[1, 2, 3]`
|
|
|
|
|
|
|
|
error: useless use of `vec!`
|
|
|
|
--> $DIR/vec.rs:121:14
|
|
|
|
|
|
|
|
|
LL | for a in vec![String::new(), String::new()] {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can use an array directly: `[String::new(), String::new()]`
|
2023-06-06 15:56:57 -05:00
|
|
|
|
2023-06-08 12:05:08 -05:00
|
|
|
error: aborting due to 15 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|