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