]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/variadic-ffi.rs
Rollup merge of #42496 - Razaekel:feature/integer_max-min, r=BurntSushi
[rust.git] / src / test / compile-fail / variadic-ffi.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-arm stdcall isn't suppported
12 // ignore-aarch64 stdcall isn't suppported
13
14 extern "stdcall" {
15     fn printf(_: *const u8, ...); //~ ERROR: variadic function must have C or cdecl calling
16 }
17
18 extern {
19     fn foo(f: isize, x: u8, ...);
20 }
21
22 extern "C" fn bar(f: isize, x: u8) {}
23
24 fn main() {
25     // errors below are no longer checked because error above aborts
26     // compilation; see variadic-ffi-3.rs for corresponding test.
27     unsafe {
28         foo();
29         foo(1);
30
31         let x: unsafe extern "C" fn(f: isize, x: u8) = foo;
32         let y: extern "C" fn(f: isize, x: u8, ...) = bar;
33
34         foo(1, 2, 3f32);
35         foo(1, 2, true);
36         foo(1, 2, 1i8);
37         foo(1, 2, 1u8);
38         foo(1, 2, 1i16);
39         foo(1, 2, 1u16);
40     }
41 }