mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
111 lines
3.1 KiB
Text
111 lines
3.1 KiB
Text
error: infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:11:5
|
|
|
|
|
LL | repeat(0_u8).collect::<Vec<_>>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> tests/ui/infinite_iter.rs:9:8
|
|
|
|
|
LL | #[deny(clippy::infinite_iter)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:14:5
|
|
|
|
|
LL | (0..8_u32).take_while(square_is_lower_64).cycle().count();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:17:5
|
|
|
|
|
LL | (0..8_u64).chain(0..).max();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:25:5
|
|
|
|
|
LL | / (0..8_u32)
|
|
LL | |
|
|
LL | | .rev()
|
|
LL | | .cycle()
|
|
LL | | .map(|x| x + 1_u32)
|
|
LL | | .for_each(|x| println!("{}", x));
|
|
| |________________________________________^
|
|
|
|
error: infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:34:5
|
|
|
|
|
LL | (0_usize..).flat_map(|x| 0..x).product::<usize>();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:37:5
|
|
|
|
|
LL | (0_u64..).filter(|x| x % 2 == 0).last();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: possible infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:48:5
|
|
|
|
|
LL | (0..).zip((0..).take_while(square_is_lower_64)).count();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> tests/ui/infinite_iter.rs:45:8
|
|
|
|
|
LL | #[deny(clippy::maybe_infinite_iter)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: possible infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:51:5
|
|
|
|
|
LL | repeat(42).take_while(|x| *x == 42).chain(0..42).max();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: possible infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:54:5
|
|
|
|
|
LL | / (1..)
|
|
LL | |
|
|
LL | | .scan(0, |state, x| {
|
|
LL | | *state += x;
|
|
LL | | Some(*state)
|
|
LL | | })
|
|
LL | | .min();
|
|
| |______________^
|
|
|
|
error: possible infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:62:5
|
|
|
|
|
LL | (0..).find(|x| *x == 24);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: possible infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:65:5
|
|
|
|
|
LL | (0..).position(|x| x == 24);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: possible infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:68:5
|
|
|
|
|
LL | (0..).any(|x| x == 24);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: possible infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:71:5
|
|
|
|
|
LL | (0..).all(|x| x == 24);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: infinite iteration detected
|
|
--> tests/ui/infinite_iter.rs:97:31
|
|
|
|
|
LL | let _: HashSet<i32> = (0..).collect();
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `#[deny(clippy::infinite_iter)]` on by default
|
|
|
|
error: aborting due to 14 previous errors
|
|
|