]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-int-overflowing.stderr
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / const-int-overflowing.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/const-int-overflowing.rs:2:36
3    |
4 LL |     let x: &'static (i32, bool) = &(5_i32.overflowing_add(3));
5    |            --------------------    ^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary 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-overflowing.rs:4:36
14    |
15 LL |     let y: &'static (i32, bool) = &(5_i32.overflowing_sub(3));
16    |            --------------------    ^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
17    |            |
18    |            type annotation requires that borrow lasts for `'static`
19 ...
20 LL | }
21    | - temporary value is freed at the end of this statement
22
23 error[E0716]: temporary value dropped while borrowed
24   --> $DIR/const-int-overflowing.rs:6:36
25    |
26 LL |     let z: &'static (i32, bool) = &(5_i32.overflowing_mul(3));
27    |            --------------------    ^^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
28    |            |
29    |            type annotation requires that borrow lasts for `'static`
30 LL |
31 LL | }
32    | - temporary value is freed at the end of this statement
33
34 error: aborting due to 3 previous errors
35
36 For more information about this error, try `rustc --explain E0716`.