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, 0 insertions, 7 deletions
diff --git a/src/test/ui/hygiene/hygienic-label-1.rs b/src/test/ui/hygiene/hygienic-label-1.rs
deleted file mode 100644
index a06d9255a..000000000
--- a/src/test/ui/hygiene/hygienic-label-1.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-macro_rules! foo {
- () => { break 'x; } //~ ERROR use of undeclared label `'x`
-}
-
-pub fn main() {
- 'x: loop { foo!(); }
-}