summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/hygienic-label-3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/hygiene/hygienic-label-3.rs')
-rw-r--r--src/test/ui/hygiene/hygienic-label-3.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/hygiene/hygienic-label-3.rs b/src/test/ui/hygiene/hygienic-label-3.rs
new file mode 100644
index 000000000..ab0559e1b
--- /dev/null
+++ b/src/test/ui/hygiene/hygienic-label-3.rs
@@ -0,0 +1,9 @@
+macro_rules! foo {
+ () => { break 'x; } //~ ERROR use of undeclared label `'x`
+}
+
+pub fn main() {
+ 'x: for _ in 0..1 {
+ foo!();
+ };
+}