Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
extern
/
auxiliary
/
no-mangle-associated-fn.rs
blob: 7fc73c76cc92a7448f9685fb00476460382de1ab [
file
] [
log
] [
blame
] [
edit
]
#![
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
}
}