]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-47184.stderr
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-47184.stderr
CommitLineData
0bf4aa26 1error[E0716]: temporary value dropped while borrowed
48663c56 2 --> $DIR/issue-47184.rs:2:44
0531ce1d
XL
3 |
4LL | let _vec: Vec<&'static String> = vec![&String::new()];
0bf4aa26
XL
5 | -------------------- ^^^^^^^^^^^^^ - temporary value is freed at the end of this statement
6 | | |
7 | | creates a temporary which is freed while still in use
8 | type annotation requires that borrow lasts for `'static`
0531ce1d
XL
9
10error: aborting due to previous error
11
0bf4aa26 12For more information about this error, try `rustc --explain E0716`.