summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_loop.stderr
blob: 113556f673c8c2e94c86362fdef420ab0657c6bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
error: empty `loop {}` wastes CPU cycles
  --> $DIR/empty_loop.rs:9:5
   |
LL |     loop {}
   |     ^^^^^^^
   |
   = help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
   = note: `-D clippy::empty-loop` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::empty_loop)]`

error: empty `loop {}` wastes CPU cycles
  --> $DIR/empty_loop.rs:12:9
   |
LL |         loop {}
   |         ^^^^^^^
   |
   = help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body

error: empty `loop {}` wastes CPU cycles
  --> $DIR/empty_loop.rs:17:9
   |
LL |         'inner: loop {}
   |         ^^^^^^^^^^^^^^^
   |
   = help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body

error: aborting due to 3 previous errors