summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-50802.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-50802.stderr')
-rw-r--r--tests/ui/issues/issue-50802.stderr9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-50802.stderr b/tests/ui/issues/issue-50802.stderr
new file mode 100644
index 000000000..e064fabcc
--- /dev/null
+++ b/tests/ui/issues/issue-50802.stderr
@@ -0,0 +1,9 @@
+error[E0590]: `break` or `continue` with no label in the condition of a `while` loop
+ --> $DIR/issue-50802.rs:5:21
+ |
+LL | break while continue {
+ | ^^^^^^^^ unlabeled `continue` in the condition of a `while` loop
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0590`.