1error: empty `loop {}` wastes CPU cycles
2  --> $DIR/empty_loop.rs:9:5
3   |
4LL |     loop {}
5   |     ^^^^^^^
6   |
7   = note: `-D clippy::empty-loop` implied by `-D warnings`
8   = help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
9
10error: empty `loop {}` wastes CPU cycles
11  --> $DIR/empty_loop.rs:11:9
12   |
13LL |         loop {}
14   |         ^^^^^^^
15   |
16   = help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
17
18error: empty `loop {}` wastes CPU cycles
19  --> $DIR/empty_loop.rs:15:9
20   |
21LL |         'inner: loop {}
22   |         ^^^^^^^^^^^^^^^
23   |
24   = help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
25
26error: aborting due to 3 previous errors
27
28