summary refs log tree commit diff
path: root/tests/ui/proc-macro/add-impl.rs
blob: 7780c39f0c14b86e14ee6da249e9a7f6b79ef48b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ run-pass
//@ aux-build:add-impl.rs

#[macro_use]
extern crate add_impl;

#[derive(AddImpl)]
struct B;

fn main() {
    B.foo();
    foo();
    bar::foo();
}