]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/issue-54224.stderr
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / ui / consts / issue-54224.stderr
1 error[E0716]: temporary value dropped while borrowed
2 --> $DIR/issue-54224.rs:3:39
3 |
4 LL | const FOO: Option<&[[u8; 3]]> = Some(&[*b"foo"]); //~ ERROR temporary value dropped while borrowed
5 | ------^^^^^^^^^-
6 | | | |
7 | | | temporary value is freed at the end of this statement
8 | | creates a temporary 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:11: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 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`.