rust/tests/run-make-fulldeps/static-dylib-by-default/bar.rs
2023-01-11 09:32:08 +00:00

9 lines
102 B
Rust

#![crate_type = "dylib"]
extern crate foo;
#[no_mangle]
pub extern "C" fn bar() {
foo::foo();
}