]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/lint/issue-47775-nested-macro-unnecessary-parens-arg.rs
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / issue-47775-nested-macro-unnecessary-parens-arg.rs
index ab9baa79b8b77644153b2f9f7360d10e08625e97..0a951cfa91c58f44ae915ade591f03be84df19ab 100644 (file)
@@ -17,10 +17,7 @@ macro_rules! the_worship_the_heart_lifts_above {
 
 macro_rules! and_the_heavens_reject_not {
     () => {
-        // ↓ But let's test that we still lint for unused parens around
-        // function args inside of simple, one-deep macros.
         #[allow(dead_code)] fn the_night_for_the_morrow() -> Option<isize> { Some((2)) }
-        //~^ WARN unnecessary parentheses around function argument
     }
 }