]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/empty_loop.stderr
Auto merge of #9684 - kraktus:ref_option_ref, r=xFrednet
[rust.git] / tests / ui / empty_loop.stderr
index 41b79900425103bcde10fd81149b8b977438e53f..7602412334bbf10d8f14f82b69aad8fdfe821713 100644 (file)
@@ -1,22 +1,27 @@
-error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
-  --> $DIR/empty_loop.rs:10:5
+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`
 
-error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
-  --> $DIR/empty_loop.rs:12:9
+error: empty `loop {}` wastes CPU cycles
+  --> $DIR/empty_loop.rs:11:9
    |
 LL |         loop {}
    |         ^^^^^^^
+   |
+   = help: you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body
 
-error: empty `loop {}` detected. You may want to either use `panic!()` or add `std::thread::sleep(..);` to the loop body.
-  --> $DIR/empty_loop.rs:16:9
+error: empty `loop {}` wastes CPU cycles
+  --> $DIR/empty_loop.rs:15: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