]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/issue-54224.stderr
Rollup merge of #106699 - eholk:await-chains-drop-tracking, r=wesleywiser
[rust.git] / tests / ui / consts / issue-54224.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/issue-54224.rs:1:39
3    |
4 LL | const FOO: Option<&[[u8; 3]]> = Some(&[*b"foo"]);
5    |                                 ------^^^^^^^^^-
6    |                                 |     |        |
7    |                                 |     |        temporary value is freed at the end of this statement
8    |                                 |     creates a temporary value which is freed while still in use
9    |                                 using this value as a constant requires that borrow lasts for `'static`
10
11 error[E0716]: temporary value dropped while borrowed
12   --> $DIR/issue-54224.rs:9:57
13    |
14 LL | pub const Z: Cow<'static, [ [u8; 3] ]> = Cow::Borrowed(&[*b"ABC"]);
15    |                                          ---------------^^^^^^^^^-
16    |                                          |              |        |
17    |                                          |              |        temporary value is freed at the end of this statement
18    |                                          |              creates a temporary value which is freed while still in use
19    |                                          using this value as a constant requires that borrow lasts for `'static`
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0716`.