2018-11-30 09:53:44 -06:00
|
|
|
#![crate_type="lib"]
|
2019-02-24 16:40:11 -06:00
|
|
|
#![feature(c_variadic)]
|
2018-11-30 09:53:44 -06:00
|
|
|
|
|
|
|
pub unsafe extern "C" fn use_vararg_lifetime(
|
|
|
|
x: usize,
|
|
|
|
y: ...
|
|
|
|
) -> &usize { //~ ERROR missing lifetime specifier
|
|
|
|
&0
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe extern "C" fn use_normal_arg_lifetime(x: &usize, y: ...) -> &usize { // OK
|
|
|
|
x
|
|
|
|
}
|