blob: 649816b48d7849333817066763a89bb2e531b63f (
plain)
1
2
3
4
5
6
7
8
9
|
#![crate_type = "lib"]
pub unsafe extern "C" fn test(_: i32, ap: ...) {}
//~^ ERROR C-variadic functions are unstable
trait Trait {
unsafe extern "C" fn trait_test(_: i32, ap: ...) {}
//~^ ERROR C-variadic functions are unstable
}
|