]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/qualif-union.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / consts / qualif-union.stderr
CommitLineData
3c0e092e 1error[E0716]: temporary value dropped while borrowed
064997fb 2 --> $DIR/qualif-union.rs:28:26
3c0e092e
XL
3 |
4LL | 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...
9LL | }
10 | - temporary value is freed at the end of this statement
11
12error[E0716]: temporary value dropped while borrowed
064997fb 13 --> $DIR/qualif-union.rs:29:26
3c0e092e
XL
14 |
15LL | 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...
20LL | }
21 | - temporary value is freed at the end of this statement
22
23error[E0716]: temporary value dropped while borrowed
064997fb 24 --> $DIR/qualif-union.rs:30:26
3c0e092e
XL
25 |
26LL | 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...
31LL | }
32 | - temporary value is freed at the end of this statement
33
34error[E0716]: temporary value dropped while borrowed
064997fb 35 --> $DIR/qualif-union.rs:31:26
3c0e092e
XL
36 |
37LL | let _: &'static _ = &C4;
38 | ---------- ^^ creates a temporary which is freed while still in use
39 | |
40 | type annotation requires that borrow lasts for `'static`
41LL | let _: &'static _ = &C5;
42LL | }
43 | - temporary value is freed at the end of this statement
44
45error[E0716]: temporary value dropped while borrowed
064997fb 46 --> $DIR/qualif-union.rs:32:26
3c0e092e
XL
47 |
48LL | let _: &'static _ = &C5;
49 | ---------- ^^ creates a temporary which is freed while still in use
50 | |
51 | type annotation requires that borrow lasts for `'static`
52LL | }
53 | - temporary value is freed at the end of this statement
54
55error: aborting due to 5 previous errors
56
57For more information about this error, try `rustc --explain E0716`.