mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 19:47:09 +00:00
15 lines
159 B
Rust
15 lines
159 B
Rust
// run-pass
|
|
// aux-build:add-impl.rs
|
|
|
|
#[macro_use]
|
|
extern crate add_impl;
|
|
|
|
#[derive(AddImpl)]
|
|
struct B;
|
|
|
|
fn main() {
|
|
B.foo();
|
|
foo();
|
|
bar::foo();
|
|
}
|