]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-int-sign.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / consts / const-int-sign.stderr
1 error[E0716]: temporary value dropped while borrowed
2 --> $DIR/const-int-sign.rs:2:29
3 |
4 LL | let x: &'static bool = &(5_i32.is_negative());
5 | ------------- ^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
6 | |
7 | type annotation requires that borrow lasts for `'static`
8 ...
9 LL | }
10 | - temporary value is freed at the end of this statement
11
12 error[E0716]: temporary value dropped while borrowed
13 --> $DIR/const-int-sign.rs:4:29
14 |
15 LL | let y: &'static bool = &(5_i32.is_positive());
16 | ------------- ^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
17 | |
18 | type annotation requires that borrow lasts for `'static`
19 LL |
20 LL | }
21 | - temporary value is freed at the end of this statement
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0716`.