DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / lint / unused / no-unused-parens-return-block.rs
123456789
// run-pass #![deny(unused_parens)] #![allow(unreachable_code)] fn main() { match (return) {} // ok if (return) {} // ok }