about summary refs log tree commit diff
path: root/tests/ui/empty_loop.stderr
blob: e44c58ea770aebab69d41c1d82ac83f02fd85dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
  --> $DIR/empty_loop.rs:9:5
   |
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.
  --> $DIR/empty_loop.rs:11:9
   |
LL |         loop {}
   |         ^^^^^^^

error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
  --> $DIR/empty_loop.rs:15:9
   |
LL |         'inner: loop {}
   |         ^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors