Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
macro_rules! m { () => { 1 } }
macro_rules! n { () => { 1 + m!() } }
fn main() {
let _: [u32; n!()] = [0, 0];
}