]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/user-annotations/adt-brace-structs.stderr
Rollup merge of #106244 - atouchet:readme3, r=workingjubilee
[rust.git] / tests / ui / nll / user-annotations / adt-brace-structs.stderr
1 error[E0597]: `c` does not live long enough
2   --> $DIR/adt-brace-structs.rs:23:37
3    |
4 LL |     SomeStruct::<&'static u32> { t: &c };
5    |                                     ^^
6    |                                     |
7    |                                     borrowed value does not live long enough
8    |                                     this usage requires that `c` is borrowed for `'static`
9 LL | }
10    | - `c` dropped here while still borrowed
11
12 error[E0597]: `c` does not live long enough
13   --> $DIR/adt-brace-structs.rs:28:32
14    |
15 LL | fn annot_reference_named_lifetime<'a>(_d: &'a u32) {
16    |                                   -- lifetime `'a` defined here
17 LL |     let c = 66;
18 LL |     SomeStruct::<&'a u32> { t: &c };
19    |                                ^^
20    |                                |
21    |                                borrowed value does not live long enough
22    |                                this usage requires that `c` is borrowed for `'a`
23 LL | }
24    | - `c` dropped here while still borrowed
25
26 error[E0597]: `c` does not live long enough
27   --> $DIR/adt-brace-structs.rs:38:36
28    |
29 LL | fn annot_reference_named_lifetime_in_closure<'a>(_: &'a u32) {
30    |                                              -- lifetime `'a` defined here
31 ...
32 LL |         SomeStruct::<&'a u32> { t: &c };
33    |                                    ^^
34    |                                    |
35    |                                    borrowed value does not live long enough
36    |                                    this usage requires that `c` is borrowed for `'a`
37 LL |     };
38    |     - `c` dropped here while still borrowed
39
40 error: aborting due to 3 previous errors
41
42 For more information about this error, try `rustc --explain E0597`.