]> git.lizzy.rs Git - rust.git/blob - src/test/ui/abi/cross-crate/anon-extern-mod-cross-crate-2.rs
Rollup merge of #92899 - cameron1024:zip-docs, r=dtolnay
[rust.git] / src / test / ui / abi / cross-crate / anon-extern-mod-cross-crate-2.rs
1 // run-pass
2 // aux-build:anon-extern-mod-cross-crate-1.rs
3 // pretty-expanded FIXME #23616
4 // ignore-wasm32-bare no libc to test ffi with
5
6 extern crate anonexternmod;
7
8 use anonexternmod::rust_get_test_int;
9
10 pub fn main() {
11     unsafe {
12         rust_get_test_int();
13     }
14 }