summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-114529-illegal-break-with-value.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/typeck/issue-114529-illegal-break-with-value.stderr')
-rw-r--r--tests/ui/typeck/issue-114529-illegal-break-with-value.stderr17
1 files changed, 16 insertions, 1 deletions
diff --git a/tests/ui/typeck/issue-114529-illegal-break-with-value.stderr b/tests/ui/typeck/issue-114529-illegal-break-with-value.stderr
index 4d6c27bbb..731f234c1 100644
--- a/tests/ui/typeck/issue-114529-illegal-break-with-value.stderr
+++ b/tests/ui/typeck/issue-114529-illegal-break-with-value.stderr
@@ -24,6 +24,21 @@ help: use `break` on its own without a value inside this `while` loop
LL | break;
| ~~~~~
-error: aborting due to 2 previous errors
+error[E0571]: `break` with value from a `while` loop
+ --> $DIR/issue-114529-illegal-break-with-value.rs:22:9
+ |
+LL | while true {
+ | ---------- you can't `break` with a value in a `while` loop
+LL | / break (|| {
+LL | | let local = 9;
+LL | | });
+ | |__________^ can only break with a value inside `loop` or breakable block
+ |
+help: use `break` on its own without a value inside this `while` loop
+ |
+LL | break;
+ | ~~~~~
+
+error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0571`.