mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 21:17:39 +00:00
9 lines
105 B
Rust
9 lines
105 B
Rust
//@ only-arm
|
|
//@ build-pass
|
|
|
|
fn aapcs(f: extern "aapcs" fn(usize, ...)) {
|
|
f(22, 44);
|
|
}
|
|
|
|
fn main() {}
|