mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +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() {}
|