]> git.lizzy.rs Git - rust.git/blob - tests/ui/extern/extern-calling-convention-test.rs
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.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 }