Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![recursion_limit = foo!()] //~ ERROR attribute value must be a literal
macro_rules! foo {
() => {"128"};
}
fn main() {}