Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
append-impl.rs
blob: f5163e965a03f665aded4faf8fc2a07b06952ff0 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
();
}