mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
433da1fc04
They pass fine.
13 lines
251 B
Rust
13 lines
251 B
Rust
#![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
|
|
}
|