summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_loop_no_std.stderr
blob: 71af64f49d522c72f7846d0fad015115b4cd22de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: empty `loop {}` wastes CPU cycles
  --> $DIR/empty_loop_no_std.rs:13:5
   |
LL |     loop {}
   |     ^^^^^^^
   |
   = help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
   = note: `-D clippy::empty-loop` implied by `-D warnings`

error: empty `loop {}` wastes CPU cycles
  --> $DIR/empty_loop_no_std.rs:25:5
   |
LL |     loop {}
   |     ^^^^^^^
   |
   = help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body

error: aborting due to 2 previous errors