Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
extern
/
auxiliary
/
no-mangle-associated-fn.rs
blob: 7fc73c76cc92a7448f9685fb00476460382de1ab [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
struct
Bar
;
impl
Bar
{
#[
no_mangle
]
fn
bar
()
->
u8
{
2
}
}
trait
Foo
{
fn
baz
()
->
u8
;
}
impl
Foo
for
Bar
{
#[
no_mangle
]
fn
baz
()
->
u8
{
3
}
}