summaryrefslogtreecommitdiffstats
path: root/tests/ui/foreign-fn-return-lifetime.fixed
blob: 143d6343d26cdb790c1a2df6d7eabeb665f2698f (plain)
1
2
3
4
5
6
7
8
// run-rustfix

extern "C" {
    pub fn g(_: &u8) -> &u8; // OK
    pub fn f() -> &'static u8; //~ ERROR missing lifetime specifier
}

fn main() {}