summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/hygienic-label-1.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/hygiene/hygienic-label-1.stderr')
-rw-r--r--src/test/ui/hygiene/hygienic-label-1.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/hygiene/hygienic-label-1.stderr b/src/test/ui/hygiene/hygienic-label-1.stderr
new file mode 100644
index 000000000..deb6a2059
--- /dev/null
+++ b/src/test/ui/hygiene/hygienic-label-1.stderr
@@ -0,0 +1,14 @@
+error[E0426]: use of undeclared label `'x`
+ --> $DIR/hygienic-label-1.rs:2:19
+ |
+LL | () => { break 'x; }
+ | ^^ undeclared label `'x`
+...
+LL | 'x: loop { foo!(); }
+ | ------ in this macro invocation
+ |
+ = note: this error originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0426`.