blob: 143d6343d26cdb790c1a2df6d7eabeb665f2698f [file] [log] [blame]
// run-rustfix
extern "C" {
pub fn g(_: &u8) -> &u8; // OK
pub fn f() -> &'static u8; //~ ERROR missing lifetime specifier
}
fn main() {}