]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/macros/macro-lifetime-used-with-labels.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / macros / macro-lifetime-used-with-labels.rs
index 2e9da6f9dc88c4cbce392717a3740df743cd43fb..59017da3b696ee3385502b1322673683efecd574 100644 (file)
@@ -18,7 +18,7 @@ macro_rules! br {
 }
 macro_rules! br2 {
     ($b:lifetime) => {
-        'b: loop { //~ WARNING `'b` shadows a label name that is already in scope
+        'b: loop {
             break $b; // this $b should refer to the outer loop.
         }
     }