Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
run-make
/
lto-avoid-object-duplication
/
upstream.rs
blob: 861a00298ea3963d396193c1312703d8a5994f9a [
file
] [
log
] [
blame
]
// Make this function extern "C", public, and no-mangle, so that it gets
// exported from the downstream staticlib.
#[
no_mangle
]
pub
extern
"C"
fn
issue64153_test_function
(
x
:
u32
)
->
u32
{
x
+
1
}