]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/issue-52663-trait-object.stderr
Update upstream source from tag 'upstream/1.31.0_beta.4+dfsg1'
[rustc.git] / src / test / ui / nll / issue-52663-trait-object.stderr
CommitLineData
0bf4aa26
XL
1error[E0597]: `tmp0` does not live long enough
2 --> $DIR/issue-52663-trait-object.rs:23:20
3 |
4LL | let tmp1 = &tmp0;
5 | ^^^^^ borrowed value does not live long enough
6LL | box tmp1 as Box<Foo + '_>
7 | ------------------------- borrow later captured here by trait object
8LL | };
9 | - `tmp0` dropped here while still borrowed
10
11error: aborting due to previous error
12
13For more information about this error, try `rustc --explain E0597`.