]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-int-sign.stderr
New upstream version 1.30.0~beta.7+dfsg1
[rustc.git] / src / test / ui / consts / const-int-sign.stderr
1 error[E0597]: borrowed value does not live long enough
2 --> $DIR/const-int-sign.rs:12:29
3 |
4 LL | let x: &'static bool = &(5_i32.is_negative()); //~ ERROR does not live long enough
5 | ^^^^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
6 LL | let y: &'static bool = &(5_i32.is_positive()); //~ ERROR does not live long enough
7 LL | }
8 | - temporary value only lives until here
9 |
10 = note: borrowed value must be valid for the static lifetime...
11
12 error[E0597]: borrowed value does not live long enough
13 --> $DIR/const-int-sign.rs:13:29
14 |
15 LL | let y: &'static bool = &(5_i32.is_positive()); //~ ERROR does not live long enough
16 | ^^^^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
17 LL | }
18 | - temporary value only lives until here
19 |
20 = note: borrowed value must be valid for the static lifetime...
21
22 error: aborting due to 2 previous errors
23
24 For more information about this error, try `rustc --explain E0597`.