]> git.proxmox.com Git - rustc.git/blob - tests/ui/extern/extern-calling-convention-test.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / extern / extern-calling-convention-test.rs
1 // run-pass
2 // aux-build:extern_calling_convention.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate extern_calling_convention;
7
8 use extern_calling_convention::foo;
9
10 pub fn main() {
11 foo(1, 2, 3, 4);
12 }