mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
28 lines
763 B
Plaintext
28 lines
763 B
Plaintext
error: empty `loop {}` wastes CPU cycles
|
|
--> $DIR/empty_loop.rs:9:5
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
|
|
|
error: empty `loop {}` wastes CPU cycles
|
|
--> $DIR/empty_loop.rs:11:9
|
|
|
|
|
LL | loop {}
|
|
| ^^^^^^^
|
|
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
|
|
|
error: empty `loop {}` wastes CPU cycles
|
|
--> $DIR/empty_loop.rs:15:9
|
|
|
|
|
LL | 'inner: loop {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
|
|
|
|
error: aborting due to 3 previous errors
|
|
|