Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
macro_rules! m {
() => { #[cfg(any())] fn f() {} }
}
trait T {}
impl T for () { m!(); }
fn main() {}