mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
19 lines
560 B
Text
19 lines
560 B
Text
error: empty `loop {}` wastes CPU cycles
|
|
--> $DIR/empty_loop_no_std.rs:13:5
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
|
= help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
|
|
|
error: empty `loop {}` wastes CPU cycles
|
|
--> $DIR/empty_loop_no_std.rs:25:5
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
|
= help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
|
|
|
|
error: aborting due to 2 previous errors
|
|
|