2020-08-11 13:43:21 +00:00
|
|
|
error: it looks like the same item is being pushed into this Vec
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/same_item_push.rs:23:9
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2020-09-10 15:47:07 +00:00
|
|
|
LL | vec.push(item);
|
|
|
|
| ^^^
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2024-01-18 17:17:53 +00:00
|
|
|
= help: consider using vec![item;SIZE] or vec.resize(NEW_SIZE, item)
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::same-item-push` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::same_item_push)]`
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
error: it looks like the same item is being pushed into this Vec
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/same_item_push.rs:30:9
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2020-09-10 15:47:07 +00:00
|
|
|
LL | vec.push(item);
|
|
|
|
| ^^^
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2024-01-18 17:17:53 +00:00
|
|
|
= help: consider using vec![item;SIZE] or vec.resize(NEW_SIZE, item)
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
error: it looks like the same item is being pushed into this Vec
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/same_item_push.rs:36:9
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2020-09-10 15:47:07 +00:00
|
|
|
LL | vec.push(13);
|
|
|
|
| ^^^
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2024-01-18 17:17:53 +00:00
|
|
|
= help: consider using vec![13;SIZE] or vec.resize(NEW_SIZE, 13)
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
error: it looks like the same item is being pushed into this Vec
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/same_item_push.rs:42:9
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2020-09-10 15:47:07 +00:00
|
|
|
LL | vec.push(VALUE);
|
|
|
|
| ^^^
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
2024-01-18 17:17:53 +00:00
|
|
|
= help: consider using vec![VALUE;SIZE] or vec.resize(NEW_SIZE, VALUE)
|
2020-08-11 13:43:21 +00:00
|
|
|
|
2020-09-10 15:47:07 +00:00
|
|
|
error: it looks like the same item is being pushed into this Vec
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/same_item_push.rs:49:9
|
2020-09-10 15:47:07 +00:00
|
|
|
|
|
|
|
|
LL | vec.push(item);
|
|
|
|
| ^^^
|
|
|
|
|
|
2024-01-18 17:17:53 +00:00
|
|
|
= help: consider using vec![item;SIZE] or vec.resize(NEW_SIZE, item)
|
2020-09-10 15:47:07 +00:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2020-08-11 13:43:21 +00:00
|
|
|
|