2020-11-23 06:51:04 -06:00
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/empty_loop_no_std.rs:13:5
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_loop)]`
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2024-02-17 06:16:29 -06:00
|
|
|
--> tests/ui/empty_loop_no_std.rs:26:5
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|