]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-15034.stderr
Rollup merge of #91804 - woppopo:const_clone, r=oli-obk
[rust.git] / src / test / ui / issues / issue-15034.stderr
1 error[E0621]: explicit lifetime required in the type of `lexer`
2   --> $DIR/issue-15034.rs:17:25
3    |
4 LL |     pub fn new(lexer: &'a mut Lexer) -> Parser<'a> {
5    |                       ------------- help: add explicit lifetime `'a` to the type of `lexer`: `&'a mut Lexer<'a>`
6 LL |         Parser { lexer: lexer }
7    |                         ^^^^^ lifetime `'a` required
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0621`.