2020-05-07 10:53:44 +05:30
|
|
|
//@ run-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: add-impl.rs
|
2020-05-07 10:53:44 +05:30
|
|
|
|
|
|
|
|
#![forbid(unused_qualifications)]
|
|
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate add_impl;
|
|
|
|
|
|
|
|
|
|
#[derive(AddImpl)]
|
|
|
|
|
struct B;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
B.foo();
|
|
|
|
|
foo();
|
|
|
|
|
bar::foo();
|
|
|
|
|
}
|