rust-clippy/tests/ui/empty_loop.stderr

29 lines
847 B
Text
Raw Normal View History

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 {}
| ^^^^^^^
|
= 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`
= help: to override `-D warnings` add `#[allow(clippy::empty_loop)]`
2019-05-12 10:10:23 +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 {}
| ^^^^^^^
|
= 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
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 {}
| ^^^^^^^^^^^^^^^
|
= 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