Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
run-make
/
no-builtins-attribute
/
main.rs
blob: 77754b37e318403a5e32647ec7d45f98776d0169 [
file
] [
log
] [
blame
] [
edit
]
extern
crate no_builtins
;
#[
no_mangle
]
fn
call_foo
()
{
no_builtins
::
foo
();
}
fn
main
()
{
call_foo
();
}