Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![crate_type="lib"]
#![feature(c_variadic)]
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