rust-clippy/tests/ui/empty_loop.stderr

28 lines
763 B
Text
Raw Normal View History

error: empty `loop {}` wastes CPU cycles
--> $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-08 11:40:41 +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: empty `loop {}` wastes CPU cycles
--> $DIR/empty_loop.rs:11:9
2019-05-12 10:10:23 +00:00
|
LL | loop {}
| ^^^^^^^
|
2020-11-08 11:40:41 +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: empty `loop {}` wastes CPU cycles
--> $DIR/empty_loop.rs:15:9
2019-05-12 10:10:23 +00:00
|
LL | 'inner: loop {}
| ^^^^^^^^^^^^^^^
|
2020-11-08 11:40:41 +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