Sign in
rust
/
rust
/
d5525a73009e2c61b09daa69df79064530bd4dcf
/
.
/
tests
/
ui
/
c-variadic
/
variadic-ffi-no-fixed-args.rs
blob: b8841e88c4f4949f9bbeb599fe152f070a20b1ad [
file
]
//@ build-pass
// Supported since C23
// https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2975.pdf
extern
"C"
{
fn
foo
(...);
}
fn
main
()
{}