Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/main
/
.
/
Tests
/
RustPie
/
main.rs
blob: fb92a968ff751a180a5194e57d0b23df3d69f209 [
file
] [
log
] [
blame
] [
edit
]
extern
"C"
{
fn
static_foo
();
fn
shared_foo
();
}
extern
crate object
;
use
object
::
object_foo
;
fn
main
()
{
unsafe
{
static_foo
();
shared_foo
();
}
object_foo
();
}