blob: 7c533df1986ed430c9216b4f5f9cdf16430f4da6 [file] [log] [blame] [edit]
//@ 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);
}