Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
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
()
{}