about summary refs log tree commit diff
path: root/tests/ui/extern/extern-calling-convention-test.rs
blob: 68315ed093470405b0f548d78706f120c783a622 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-pass
//@ aux-build:extern_calling_convention.rs


extern crate extern_calling_convention;

use extern_calling_convention::foo;

pub fn main() {
    foo(1, 2, 3, 4);
}