Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ check-pass
#![allow(dead_code)]
macro_rules! m { () => { 0 } }
trait T {
const C: i32 = m!();
}
struct S;
impl S {
fn main() {}