]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/hygiene/hygienic-label-1.rs
Rollup merge of #90202 - matthewjasper:xcrate-hygiene, r=petrochenkov
[rust.git] / src / test / ui / hygiene / hygienic-label-1.rs
index 66361eec21a52b1d8b4bca007d3dcd4efe57b557..a06d9255ab5b0d598f9a0fbbc71e92fcc8561d69 100644 (file)
@@ -3,5 +3,5 @@ macro_rules! foo {
 }
 
 pub fn main() {
-    'x: loop { foo!() }
+    'x: loop { foo!(); }
 }