Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
macro_rules! m {
($i:meta) => {
#[derive($i)]
struct S;
}
m!(Clone);
fn main() {}