mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
13 lines
208 B
Rust
13 lines
208 B
Rust
//@ run-pass
|
|
//@ aux-build:extern_calling_convention.rs
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
extern crate extern_calling_convention;
|
|
|
|
use extern_calling_convention::foo;
|
|
|
|
pub fn main() {
|
|
foo(1, 2, 3, 4);
|
|
}
|