mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
28 lines
847 B
Text
28 lines
847 B
Text
error: empty `loop {}` wastes CPU cycles
|
|
--> tests/ui/empty_loop.rs:9:5
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_loop)]`
|
|
|
|
error: empty `loop {}` wastes CPU cycles
|
|
--> tests/ui/empty_loop.rs:12:9
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
|
|
|
error: empty `loop {}` wastes CPU cycles
|
|
--> tests/ui/empty_loop.rs:17:9
|
|
|
|
|
LL | 'inner: loop {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
|
|
|
error: aborting due to 3 previous errors
|
|
|