summaryrefslogtreecommitdiffstats
path: root/src/test/ui/label/label_misspelled_2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/label/label_misspelled_2.rs')
-rw-r--r--src/test/ui/label/label_misspelled_2.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/label/label_misspelled_2.rs b/src/test/ui/label/label_misspelled_2.rs
new file mode 100644
index 000000000..55bbe6b30
--- /dev/null
+++ b/src/test/ui/label/label_misspelled_2.rs
@@ -0,0 +1,16 @@
+#![warn(unused_labels)]
+
+fn main() {
+ 'a: for _ in 0..1 {
+ break 'a;
+ }
+ 'b: for _ in 0..1 {
+ break b; //~ ERROR cannot find value `b` in this scope
+ }
+ c: for _ in 0..1 { //~ ERROR malformed loop label
+ break 'c;
+ }
+ d: for _ in 0..1 { //~ ERROR malformed loop label
+ break d; //~ ERROR cannot find value `d` in this scope
+ }
+}