2019-05-12 05:10:23 -05:00
|
|
|
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
|
2019-12-21 09:20:30 -06:00
|
|
|
--> $DIR/empty_loop.rs:9:5
|
2019-05-12 05:10:23 -05:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::empty-loop` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
|
2019-12-21 09:20:30 -06:00
|
|
|
--> $DIR/empty_loop.rs:11:9
|
2019-05-12 05:10:23 -05:00
|
|
|
|
|
|
|
|
LL | loop {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
|
2019-12-21 09:20:30 -06:00
|
|
|
--> $DIR/empty_loop.rs:15:9
|
2019-05-12 05:10:23 -05:00
|
|
|
|
|
|
|
|
LL | 'inner: loop {}
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|