Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
proc-macro
/
derive-same-struct.rs
blob: f7669ba1480b240a869345e7aacbc6584c055204 [
file
] [
log
] [
blame
]
//@ run-pass
#![
allow
(
path_statements
)]
#![
allow
(
dead_code
)]
//@ proc-macro: derive-same-struct.rs
#[
macro_use
]
extern
crate derive_same_struct
;
#[
derive
(
AToB
)]
struct
A
;
fn
main
()
{
C
;
}