about summary refs log tree commit diff
path: root/tests/ui/c-variadic/variadic-ffi-no-fixed-args.rs
blob: b8841e88c4f4949f9bbeb599fe152f070a20b1ad (plain)
1
2
3
4
5
6
7
8
9
//@ build-pass

// Supported since C23
// https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2975.pdf
extern "C" {
    fn foo(...);
}

fn main() {}