]> git.lizzy.rs Git - rust.git/blob - tests/ui/statics/issue-44373.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / 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 value 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`.