]> git.lizzy.rs Git - rust.git/blob - src/test/ui/abi/mir/mir_codegen_calls_variadic.rs
Rollup merge of #95353 - jyn514:invalid-filter-hard-error, r=Mark-Simulacrum
[rust.git] / src / test / ui / abi / mir / mir_codegen_calls_variadic.rs
1 // run-pass
2 // ignore-wasm32-bare no libc to test ffi with
3
4 #[link(name = "rust_test_helpers", kind = "static")]
5 extern "C" {
6     fn rust_interesting_average(_: i64, ...) -> f64;
7 }
8
9 fn test<T, U>(a: i64, b: i64, c: i64, d: i64, e: i64, f: T, g: U) -> i64 {
10     unsafe {
11         rust_interesting_average(
12             6, a, a as f64, b, b as f64, c, c as f64, d, d as f64, e, e as f64, f, g,
13         ) as i64
14     }
15 }
16
17 fn main() {
18     assert_eq!(test(10, 20, 30, 40, 50, 60_i64, 60.0_f64), 70);
19 }