Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
proc-macro
/
append-impl.rs
blob: a493840134840420868ffe47fd28f459ccb2453d [
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
();
}