Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
abi
/
cross-crate
/
anon-extern-mod-cross-crate-2.rs
blob: 95bf4df68df261dc10b44b631b5058775c0392d9 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ aux-build:anon-extern-mod-cross-crate-1.rs
//@ pretty-expanded FIXME #23616
extern
crate anonexternmod
;
use
anonexternmod
::
rust_get_test_int
;
pub
fn
main
()
{
unsafe
{
rust_get_test_int
();
}
}