mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
194 B
Rust
15 lines
194 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;
|
|
}
|