]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/static-dylib-by-default/bar.rs
Auto merge of #55519 - fhartwig:hashmap-index-example, r=Centril
[rust.git] / src / test / run-make-fulldeps / static-dylib-by-default / bar.rs
1 #![crate_type = "dylib"]
2
3 extern crate foo;
4
5 #[no_mangle]
6 pub extern fn bar() {
7     foo::foo();
8 }