Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ check-pass
struct S(u8);
impl S {
fn method1() -> Self {
Self(0)
}
macro_rules! define_method { () => {
fn method2() -> Self {
Self(0) // OK
}}
define_method!();
fn main() {}