]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-11493.ast.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-11493.ast.stderr
1 error[E0597]: borrowed value does not live long enough (Ast)
2   --> $DIR/issue-11493.rs:10:35
3    |
4 LL |     let y = x.as_ref().unwrap_or(&id(5));
5    |                                   ^^^^^ - temporary value dropped here while still borrowed
6    |                                   |
7    |                                   temporary value does not live long enough
8 ...
9 LL | }
10    | - temporary value needs to live until here
11    |
12    = note: consider using a `let` binding to increase its lifetime
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0597`.