aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/ok/0063_variadic_fun.rs
blob: a16afbaf386d5701f912ba4e89e931bbf552b5e9 (plain)
1
2
3
4
5
extern "C" {
    fn a(_: *mut u8, ...,);
    fn b(_: *mut u8, _: ...);
    fn c(_: *mut u8, #[cfg(never)] [w, t, f]: ...,);
}