1error[E0106]: missing lifetime specifier
2  --> $DIR/foreign-fn-return-lifetime.rs:5:19
3   |
4LL |     pub fn f() -> &u8;
5   |                   ^ expected named lifetime parameter
6   |
7   = help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
8help: consider using the `'static` lifetime
9   |
10LL |     pub fn f() -> &'static u8;
11   |                   ~~~~~~~~
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0106`.
16