Sign in
fuchsia
/
third_party
/
rust
/
e3029abfaec4252ab0ae7010780be0094d8870e0
/
.
/
tests
/
ui
/
proc-macro
/
append-impl.rs
blob: f5163e965a03f665aded4faf8fc2a07b06952ff0 [
file
] [
log
] [
blame
]
//@ run-pass
//@ aux-build: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
();
}