Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![allow(dead_code)]
// aux-build:derive-two-attrs.rs
extern crate derive_two_attrs as foo;
use foo::A;
#[derive(A)]
#[b]
struct B;
fn main() {}