rust/src/test/run-pass/proc-macro/derive-same-struct.rs
2018-12-25 21:08:33 -07:00

14 lines
179 B
Rust

#![allow(path_statements)]
#![allow(dead_code)]
// aux-build:derive-same-struct.rs
#[macro_use]
extern crate derive_same_struct;
#[derive(AToB)]
struct A;
fn main() {
C;
}