summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/empty_loop.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/empty_loop.stderr')
-rw-r--r--src/tools/clippy/tests/ui/empty_loop.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/empty_loop.stderr b/src/tools/clippy/tests/ui/empty_loop.stderr
new file mode 100644
index 000000000..555f3d3d8
--- /dev/null
+++ b/src/tools/clippy/tests/ui/empty_loop.stderr
@@ -0,0 +1,27 @@
+error: empty `loop {}` wastes CPU cycles
+ --> $DIR/empty_loop.rs:9:5
+ |
+LL | loop {}
+ | ^^^^^^^
+ |
+ = note: `-D clippy::empty-loop` implied by `-D warnings`
+ = 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:11: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: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
+