rust/tests/ui/proc-macro/derive-same-struct.rs
2023-01-11 09:32:08 +00:00

16 lines
192 B
Rust

// run-pass
#![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;
}