Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
proc-macro
/
append-impl.rs
blob: c0f208460b297bd1aeccb089acc80c364712996d [
file
] [
log
] [
blame
]
//@ run-pass
//@ proc-macro: append-impl.rs
#![
allow
(
warnings
)]
#[
macro_use
]
extern
crate append_impl
;
trait
Append
{
fn
foo
(&
self
);
}
#[
derive
(
PartialEq
,
Append
,
Eq
)]
struct
A
{
inner
:
u32
,
}
fn
main
()
{
A
{
inner
:
3
}.
foo
();
}