mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
12 lines
175 B
Rust
12 lines
175 B
Rust
//@ run-pass
|
|
//@ aux-build:extern_calling_convention.rs
|
|
|
|
|
|
extern crate extern_calling_convention;
|
|
|
|
use extern_calling_convention::foo;
|
|
|
|
pub fn main() {
|
|
foo(1, 2, 3, 4);
|
|
}
|