]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-15034.stderr
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-15034.stderr
CommitLineData
8faf50e0 1error[E0621]: explicit lifetime required in the type of `lexer`
0731742a 2 --> $DIR/issue-15034.rs:17:25
8faf50e0
XL
3 |
4LL | pub fn new(lexer: &'a mut Lexer) -> Parser<'a> {
b7449926 5 | ------------- help: add explicit lifetime `'a` to the type of `lexer`: `&'a mut Lexer<'a>`
8faf50e0
XL
6LL | Parser { lexer: lexer }
7 | ^^^^^ lifetime `'a` required
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0621`.