2020-10-28 22:36:07 +00:00
|
|
|
error: empty `loop {}` wastes CPU cycles
|
2019-12-21 15:20:30 +00:00
|
|
|
--> $DIR/empty_loop.rs:9:5
|
2019-05-12 10:10:23 +00:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
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
|
2019-12-21 15:20:30 +00:00
|
|
|
--> $DIR/empty_loop.rs:11: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
|
2019-12-21 15:20:30 +00:00
|
|
|
--> $DIR/empty_loop.rs:15: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
|
|
|
|
|