]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/qualif-union.stderr
Rollup merge of #89876 - AlexApps99:const_ops, r=oli-obk
[rust.git] / src / test / ui / consts / qualif-union.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/qualif-union.rs:27:26
3    |
4 LL |     let _: &'static _ = &C1;
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/qualif-union.rs:28:26
14    |
15 LL |     let _: &'static _ = &C2;
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/qualif-union.rs:29:26
25    |
26 LL |     let _: &'static _ = &C3;
27    |            ----------    ^^ creates a temporary which is freed while still in use
28    |            |
29    |            type annotation requires that borrow lasts for `'static`
30 ...
31 LL | }
32    | - temporary value is freed at the end of this statement
33
34 error[E0716]: temporary value dropped while borrowed
35   --> $DIR/qualif-union.rs:30:26
36    |
37 LL |     let _: &'static _ = &C4;
38    |            ----------    ^^ creates a temporary which is freed while still in use
39    |            |
40    |            type annotation requires that borrow lasts for `'static`
41 LL |     let _: &'static _ = &C5;
42 LL | }
43    | - temporary value is freed at the end of this statement
44
45 error[E0716]: temporary value dropped while borrowed
46   --> $DIR/qualif-union.rs:31:26
47    |
48 LL |     let _: &'static _ = &C5;
49    |            ----------    ^^ creates a temporary which is freed while still in use
50    |            |
51    |            type annotation requires that borrow lasts for `'static`
52 LL | }
53    | - temporary value is freed at the end of this statement
54
55 error: aborting due to 5 previous errors
56
57 For more information about this error, try `rustc --explain E0716`.