blob: 7231a7cde85e05822d53f9d1dbd2d37c1f81ec44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// run-pass
// aux-build:extern_calling_convention.rs
// pretty-expanded FIXME #23616
extern crate extern_calling_convention;
use extern_calling_convention::foo;
pub fn main() {
foo(1, 2, 3, 4);
}
|