2020-10-28 22:36:07 +00:00
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/empty_loop.rs:9:5
|
2019-05-12 10:10:23 +00:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2020-11-23 12:51:04 +00:00
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_loop)]`
|
2019-05-12 10:10:23 +00:00
|
|
|
|
2020-10-28 22:36:07 +00:00
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/empty_loop.rs:12:9
|
2019-05-12 10:10:23 +00:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
2020-10-28 22:36:07 +00:00
|
|
|
|
|
2020-11-23 12:51:04 +00:00
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
2019-05-12 10:10:23 +00:00
|
|
|
|
2020-10-28 22:36:07 +00:00
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/empty_loop.rs:17:9
|
2019-05-12 10:10:23 +00:00
|
|
|
|
|
|
|
|
LL | 'inner: loop {}
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2020-10-28 22:36:07 +00:00
|
|
|
|
|
2020-11-23 12:51:04 +00:00
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
2019-05-12 10:10:23 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|