mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 01:18:43 +00:00
13 lines
195 B
Rust
13 lines
195 B
Rust
//@ run-pass
|
|
//@ aux-build:anon-extern-mod-cross-crate-1.rs
|
|
|
|
extern crate anonexternmod;
|
|
|
|
use anonexternmod::rust_get_test_int;
|
|
|
|
pub fn main() {
|
|
unsafe {
|
|
rust_get_test_int();
|
|
}
|
|
}
|