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