Sign in
fuchsia
/
third_party
/
rust
/
290a260721591338e7acbd207c0c96283b5ec0fb
/
.
/
tests
/
run-make
/
cross-lang-lto-pgo-smoketest-clang
/
main.rs
blob: 8129dcb85d96a0442f390f86a63154f3ff580377 [
file
] [
log
] [
blame
]
#[
link
(
name
=
"xyz"
)]
extern
"C"
{
fn
c_always_inlined
()
->
u32
;
fn
c_never_inlined
()
->
u32
;
}
fn
main
()
{
unsafe
{
println
!(
"blub: {}"
,
c_always_inlined
()
+
c_never_inlined
());
}
}