2020-10-28 23:36:07 +01: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 12:10:23 +02:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2020-11-23 13:51:04 +01:00
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::empty_loop)]`
|
2019-05-12 12:10:23 +02:00
|
|
|
|
2020-10-28 23:36:07 +01: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 12:10:23 +02:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
2020-10-28 23:36:07 +01:00
|
|
|
|
|
2020-11-23 13:51:04 +01:00
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
2019-05-12 12:10:23 +02:00
|
|
|
|
2020-10-28 23:36:07 +01: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 12:10:23 +02:00
|
|
|
|
|
|
|
|
LL | 'inner: loop {}
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2020-10-28 23:36:07 +01:00
|
|
|
|
|
2020-11-23 13:51:04 +01:00
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
2019-05-12 12:10:23 +02:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|