22 lines
578 B
Rust
22 lines
578 B
Rust
![]() |
// test.c and its static library checkrust.rs make use of variadic functions (VaList).
|
||
|
// This test checks that the use of this feature does not
|
||
|
// prevent the creation of a functional binary.
|
||
|
// See https://github.com/rust-lang/rust/pull/49878
|
||
|
|
||
|
//@ ignore-cross-compile
|
||
|
|
||
|
use run_make_support::{cc, extra_c_flags, run, rustc, static_lib};
|
||
|
|
||
|
fn main() {
|
||
|
rustc()
|
||
|
.input("checkrust.rs")
|
||
|
.run();
|
||
|
cc()
|
||
|
.input("test.c")
|
||
|
.input(static_lib("checkrust"))
|
||
|
.out_exe("test")
|
||
|
.args(&extra_c_flags())
|
||
|
.run();
|
||
|
run("test");
|
||
|
}
|