]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-54224.stderr
Fix a few tests with target-specific output
[rust.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    |                                       ^^^^^^^^^- temporary value is freed at the end of this statement
6    |                                       |
7    |                                       creates a temporary which is freed while still in use
8    |
9    = note: borrowed value must be valid for the static lifetime...
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    |                                                         ^^^^^^^^^- temporary value is freed at the end of this statement
16    |                                                         |
17    |                                                         creates a temporary which is freed while still in use
18    |
19    = note: borrowed value must be valid for the static lifetime...
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0716`.