mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
710c749bb1
This lint was uplifted/turned into warn-by-default in rustc
22 lines
714 B
Text
22 lines
714 B
Text
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
|
|
--> $DIR/empty_loop.rs:9:5
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
|
|
|
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
|
|
--> $DIR/empty_loop.rs:11:9
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
|
|
--> $DIR/empty_loop.rs:15:9
|
|
|
|
|
LL | 'inner: loop {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|