]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/dont_promote_unstable_const_fn_cross_crate.stderr
Auto merge of #81132 - bugadani:map-prealloc, r=matthewjasper
[rust.git] / src / test / ui / consts / const-eval / dont_promote_unstable_const_fn_cross_crate.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/dont_promote_unstable_const_fn_cross_crate.rs:8:28
3    |
4 LL |     let _: &'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 |     let _x: &'static u32 = &foo();
9 LL | }
10    | - temporary value is freed at the end of this statement
11
12 error[E0716]: temporary value dropped while borrowed
13   --> $DIR/dont_promote_unstable_const_fn_cross_crate.rs:9:29
14    |
15 LL |     let _x: &'static u32 = &foo();
16    |             ------------    ^^^^^ creates a temporary which is freed while still in use
17    |             |
18    |             type annotation requires that borrow lasts for `'static`
19 LL | }
20    | - temporary value is freed at the end of this statement
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0716`.