Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
// aux-build:add-impl.rs
#[macro_use]
extern crate add_impl;
#[derive(AddImpl)]
struct B;
fn main() {
B.foo();
foo();
bar::foo();
}