aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/invalid_variadics.rs
blob: 5706b673791b018e9f5ca81278d735c8909828fb (plain)
1
2
3
4
5
6
extern "C" {
    pub fn dog(b: i32, a: ..., c: i32);
    // { dg-error "..... must be the last argument of a C-variadic function" "" { target *-*-* } .-1 }
    pub fn cat(a: ...);
    // { dg-error "C-variadic function must be declared with at least one named argument" "" { target *-*-* } .-1 }
}