]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19707.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-19707.stderr
1 error[E0106]: missing lifetime specifier
2   --> $DIR/issue-19707.rs:13:28
3    |
4 LL | type foo = fn(&u8, &u8) -> &u8; //~ ERROR missing lifetime specifier
5    |                            ^ expected lifetime parameter
6    |
7    = help: this function's return type contains a borrowed value, but the signature does not say whether it is borrowed from argument 1 or argument 2
8
9 error[E0106]: missing lifetime specifier
10   --> $DIR/issue-19707.rs:15:27
11    |
12 LL | fn bar<F: Fn(&u8, &u8) -> &u8>(f: &F) {} //~ ERROR missing lifetime specifier
13    |                           ^ expected lifetime parameter
14    |
15    = help: this function's return type contains a borrowed value, but the signature does not say whether it is borrowed from argument 1 or argument 2
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0106`.