]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-44373.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-44373.stderr
CommitLineData
48663c56 1error[E0716]: temporary value dropped while borrowed
0731742a 2 --> $DIR/issue-44373.rs:4:42
8faf50e0 3 |
532ac7d7 4LL | let _val: &'static [&'static u32] = &[&FOO];
48663c56
XL
5 | ----------------------- ^^^^^^ creates a temporary which is freed while still in use
6 | |
7 | type annotation requires that borrow lasts for `'static`
8faf50e0 8LL | }
48663c56 9 | - temporary value is freed at the end of this statement
8faf50e0
XL
10
11error: aborting due to previous error
12
48663c56 13For more information about this error, try `rustc --explain E0716`.