mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 03:57:37 +00:00
10 lines
147 B
Rust
10 lines
147 B
Rust
//@ only-arm
|
|
//@ build-pass
|
|
#![feature(extended_varargs_abi_support)]
|
|
|
|
fn aapcs(f: extern "aapcs" fn(usize, ...)) {
|
|
f(22, 44);
|
|
}
|
|
|
|
fn main() {}
|