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