Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
test
/
run-pass
/
proc-macro
/
attr-on-trait.rs
blob: 4a8fac411016bf22a6481344d3117e0d5260a366 [
file
] [
log
] [
blame
]
// aux-build:attr-on-trait.rs
extern
crate attr_on_trait
;
use
attr_on_trait
::
foo
;
trait
Foo
{
#[
foo
]
fn
foo
()
{}
}
impl
Foo
for
i32
{
fn
foo
(&
self
)
{}
}
fn
main
()
{
3i32.foo
();
}