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