]> git.lizzy.rs Git - rust.git/blob - src/test/ui/foreign-fn-return-lifetime.stderr
Auto merge of #51384 - QuietMisdreavus:extern-version, r=GuillaumeGomez
[rust.git] / src / test / ui / foreign-fn-return-lifetime.stderr
1 error[E0106]: missing lifetime specifier
2   --> $DIR/foreign-fn-return-lifetime.rs:13:15
3    |
4 LL |     fn f() -> &u8; //~ ERROR missing lifetime specifier
5    |               ^ expected 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
8    = help: consider giving it a 'static lifetime
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0106`.