rust/tests/run-make/staticlib-broken-bitcode/rust_lib.rs
2025-02-14 10:54:56 +00:00

6 lines
112 B
Rust

#![crate_type = "rlib"]
#[link(name = "thin_archive", kind = "static")]
extern "C" {
pub fn simple_fn();
}