Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
run-make-fulldeps
/
symbol-visibility
/
an_rlib.rs
blob: 3696422b11e96adc6148eabc87e7e3e72df3d7ef [
file
] [
log
] [
blame
]
#![
crate_type
=
"rlib"
]
pub
fn
public_rust_function_from_rlib
()
{}
#[
no_mangle
]
pub
extern
"C"
fn
public_c_function_from_rlib
()
{
let
_
=
public_generic_function_from_rlib
(
0u64
);
}
pub
fn
public_generic_function_from_rlib
<
T
>(
x
:
T
)
->
T
{
x
}