]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/hygiene/hygienic-label-3.rs
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
[rust.git] / src / test / ui / hygiene / hygienic-label-3.rs
index a81eb842259709f71e67e4c2353f18799a8e4c63..ab0559e1b6a8379adcbf912800bbe78fcf04ac32 100644 (file)
@@ -4,6 +4,6 @@ macro_rules! foo {
 
 pub fn main() {
     'x: for _ in 0..1 {
-        foo!()
+        foo!();
     };
 }