rust/tests/ui/proc-macro/derive-same-struct.rs
2025-09-26 15:33:48 +02:00

17 lines
221 B
Rust

//@ run-pass
#![allow(path_statements)]
#![allow(dead_code)]
//@ proc-macro: derive-same-struct.rs
//@ ignore-backends: gcc
#[macro_use]
extern crate derive_same_struct;
#[derive(AToB)]
struct A;
fn main() {
C;
}