2020-10-28 22:36:07 +00:00
|
|
|
error: for loop over a single element
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_element_loop.rs:8:5
|
2020-10-28 22:36:07 +00:00
|
|
|
|
|
|
|
|
LL | / for item in &[item1] {
|
2022-04-07 17:39:59 +00:00
|
|
|
LL | | dbg!(item);
|
2020-10-28 22:36:07 +00:00
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::single-element-loop` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::single_element_loop)]`
|
2020-10-28 22:36:07 +00:00
|
|
|
help: try
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ {
|
|
|
|
LL + let item = &item1;
|
2022-04-07 17:39:59 +00:00
|
|
|
LL + dbg!(item);
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + }
|
2020-10-28 22:36:07 +00:00
|
|
|
|
|
|
|
|
|
2021-04-27 14:55:11 +00:00
|
|
|
error: for loop over a single element
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_element_loop.rs:12:5
|
2021-04-27 14:55:11 +00:00
|
|
|
|
|
|
|
|
LL | / for item in [item1].iter() {
|
2022-04-07 17:39:59 +00:00
|
|
|
LL | | dbg!(item);
|
2021-04-27 14:55:11 +00:00
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ {
|
|
|
|
LL + let item = &item1;
|
2022-04-07 17:39:59 +00:00
|
|
|
LL + dbg!(item);
|
2021-08-11 14:21:33 +00:00
|
|
|
LL + }
|
2021-04-27 14:55:11 +00:00
|
|
|
|
|
|
|
|
|
2023-11-24 16:47:31 +00:00
|
|
|
error: this loops only once with `item` being `0..5`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_element_loop.rs:16:17
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
2023-11-23 22:07:36 +00:00
|
|
|
LL | for item in &[0..5] {
|
|
|
|
| ^^^^^^^ help: did you mean to iterate over the range instead?: `0..5`
|
2022-04-07 17:39:59 +00:00
|
|
|
|
2023-11-24 16:47:31 +00:00
|
|
|
error: this loops only once with `item` being `0..5`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_element_loop.rs:20:17
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
2023-11-23 22:07:36 +00:00
|
|
|
LL | for item in [0..5].iter_mut() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: did you mean to iterate over the range instead?: `0..5`
|
2022-04-07 17:39:59 +00:00
|
|
|
|
2023-11-24 16:47:31 +00:00
|
|
|
error: this loops only once with `item` being `0..5`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_element_loop.rs:24:17
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
2023-11-23 22:07:36 +00:00
|
|
|
LL | for item in [0..5] {
|
|
|
|
| ^^^^^^ help: did you mean to iterate over the range instead?: `0..5`
|
2022-04-07 17:39:59 +00:00
|
|
|
|
2023-11-24 16:47:31 +00:00
|
|
|
error: this loops only once with `item` being `0..5`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_element_loop.rs:28:17
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
2023-11-23 22:07:36 +00:00
|
|
|
LL | for item in [0..5].into_iter() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: did you mean to iterate over the range instead?: `0..5`
|
2022-04-07 17:39:59 +00:00
|
|
|
|
2023-01-12 18:48:13 +00:00
|
|
|
error: for loop over a single element
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/single_element_loop.rs:47:5
|
2023-01-12 18:48:13 +00:00
|
|
|
|
|
|
|
|
LL | / for _ in [42] {
|
|
|
|
LL | | let _f = |n: u32| {
|
|
|
|
LL | | for i in 0..n {
|
|
|
|
LL | | if i > 10 {
|
|
|
|
... |
|
|
|
|
LL | | };
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL ~ {
|
|
|
|
LL + let _ = 42;
|
|
|
|
LL + let _f = |n: u32| {
|
|
|
|
LL + for i in 0..n {
|
|
|
|
LL + if i > 10 {
|
|
|
|
LL + dbg!(i);
|
|
|
|
LL + break;
|
|
|
|
LL + }
|
|
|
|
LL + }
|
|
|
|
LL + };
|
|
|
|
LL + }
|
|
|
|
|
|
|
|
|
|
2024-07-17 18:59:46 +00:00
|
|
|
error: for loop over a single element
|
|
|
|
--> tests/ui/single_element_loop.rs:61:5
|
|
|
|
|
|
|
|
|
LL | / for (Ok(mut _x) | Err(mut _x)) in [res_void] {
|
|
|
|
LL | | let ptr: *const bool = std::ptr::null();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: try
|
|
|
|
|
|
|
|
|
LL ~ {
|
|
|
|
LL + let (Ok(mut _x) | Err(mut _x)) = res_void;
|
|
|
|
LL + let ptr: *const bool = std::ptr::null();
|
|
|
|
LL + }
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2020-10-28 22:36:07 +00:00
|
|
|
|