about summary refs log tree commit diff
path: root/tests/ui/label/label_break_value_continue.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/label/label_break_value_continue.rs')
-rw-r--r--tests/ui/label/label_break_value_continue.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ui/label/label_break_value_continue.rs b/tests/ui/label/label_break_value_continue.rs
new file mode 100644
index 00000000000..22172f4fd2e
--- /dev/null
+++ b/tests/ui/label/label_break_value_continue.rs
@@ -0,0 +1,26 @@
+#![allow(unused_labels)]
+
+// Simple continue pointing to an unlabeled break should yield in an error
+fn continue_simple() {
+    'b: {
+        continue; //~ ERROR unlabeled `continue` inside of a labeled block
+    }
+}
+
+// Labeled continue pointing to an unlabeled break should yield in an error
+fn continue_labeled() {
+    'b: {
+        continue 'b; //~ ERROR `continue` pointing to a labeled block
+    }
+}
+
+// Simple continue that would cross a labeled block should yield in an error
+fn continue_crossing() {
+    loop {
+        'b: {
+            continue; //~ ERROR unlabeled `continue` inside of a labeled block
+        }
+    }
+}
+
+pub fn main() {}