]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/user-annotations/adt-tuple-enums.stderr
Rollup merge of #106144 - tgross35:patch-1, r=Mark-Simulacrum
[rust.git] / tests / ui / nll / user-annotations / adt-tuple-enums.stderr
1 error[E0597]: `c` does not live long enough
2   --> $DIR/adt-tuple-enums.rs:28:43
3    |
4 LL |     SomeEnum::SomeVariant::<&'static u32>(&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-tuple-enums.rs:33:38
14    |
15 LL | fn annot_reference_named_lifetime<'a>(_d: &'a u32) {
16    |                                   -- lifetime `'a` defined here
17 LL |     let c = 66;
18 LL |     SomeEnum::SomeVariant::<&'a u32>(&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-tuple-enums.rs:43:42
28    |
29 LL | fn annot_reference_named_lifetime_in_closure<'a>(_: &'a u32) {
30    |                                              -- lifetime `'a` defined here
31 ...
32 LL |         SomeEnum::SomeVariant::<&'a u32>(&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`.