]> git.proxmox.com Git - rustc.git/blob - tests/ui/nll/user-annotations/fns.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / nll / user-annotations / fns.stderr
1 error[E0597]: `c` does not live long enough
2 --> $DIR/fns.rs:23:29
3 |
4 LL | some_fn::<&'static u32>(&c);
5 | ------------------------^^-
6 | | |
7 | | borrowed value does not live long enough
8 | argument 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/fns.rs:28:24
14 |
15 LL | fn annot_reference_named_lifetime<'a>(_d: &'a u32) {
16 | -- lifetime `'a` defined here
17 LL | let c = 66;
18 LL | some_fn::<&'a u32>(&c);
19 | -------------------^^-
20 | | |
21 | | borrowed value does not live long enough
22 | argument 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/fns.rs:38:28
28 |
29 LL | fn annot_reference_named_lifetime_in_closure<'a>(_: &'a u32) {
30 | -- lifetime `'a` defined here
31 ...
32 LL | some_fn::<&'a u32>(&c);
33 | -------------------^^-
34 | | |
35 | | borrowed value does not live long enough
36 | argument 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`.