mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
259 lines
5.9 KiB
Text
259 lines
5.9 KiB
Text
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:13:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::infinite-loop` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::infinite_loop)]`
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn no_break() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:20:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | loop {
|
|
LL | |
|
|
... |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn all_inf() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:22:9
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn all_inf() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:24:13
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_____________^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn all_inf() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:38:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= help: if this is not intended, try adding a `break` or `return` condition in the loop
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:51:5
|
|
|
|
|
LL | / loop {
|
|
LL | | fn inner_fn() -> ! {
|
|
LL | | std::process::exit(0);
|
|
LL | | }
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn no_break_never_ret_noise() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:94:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | loop {
|
|
LL | | if cond {
|
|
... |
|
|
LL | | }
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn break_inner_but_not_outer_1(cond: bool) -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:105:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | 'inner: loop {
|
|
LL | | loop {
|
|
... |
|
|
LL | | }
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn break_inner_but_not_outer_2(cond: bool) -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:119:9
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn break_outer_but_not_inner() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:142:9
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | 'inner: loop {
|
|
LL | | loop {
|
|
... |
|
|
LL | | }
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn break_wrong_loop(cond: bool) -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:182:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | match opt {
|
|
LL | | Some(v) => {
|
|
... |
|
|
LL | | }
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn match_like() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:223:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | let _x = matches!(result, Ok(v) if v != 0).then_some(0);
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn match_like() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:228:5
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | // This `return` does not return the function, so it doesn't count
|
|
LL | | let _x = matches!(result, Ok(v) if v != 0).then(|| {
|
|
... |
|
|
LL | | });
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn match_like() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:333:9
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn problematic_trait_method() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:343:9
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | fn could_be_problematic() -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:352:9
|
|
|
|
|
LL | / loop {
|
|
LL | |
|
|
LL | | do_something();
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
help: if this is intentional, consider specifying `!` as function return
|
|
|
|
|
LL | let _loop_forever = || -> ! {
|
|
| ++++
|
|
|
|
error: infinite loop detected
|
|
--> tests/ui/infinite_loops.rs:366:8
|
|
|
|
|
LL | Ok(loop {
|
|
| ________^
|
|
LL | | do_something()
|
|
LL | | })
|
|
| |_____^
|
|
|
|
|
= help: if this is not intended, try adding a `break` or `return` condition in the loop
|
|
|
|
error: aborting due to 17 previous errors
|
|
|