]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/user-annotations/issue-54124.stderr
Rollup merge of #106144 - tgross35:patch-1, r=Mark-Simulacrum
[rust.git] / tests / ui / nll / user-annotations / issue-54124.stderr
1 error: lifetime may not live long enough
2   --> $DIR/issue-54124.rs:2:22
3    |
4 LL | fn test<'a>() {
5    |         -- lifetime `'a` defined here
6 LL |     let _:fn(&()) = |_:&'a ()| {};
7    |                      ^ - let's call the lifetime of this reference `'1`
8    |                      |
9    |                      requires that `'1` must outlive `'a`
10
11 error: lifetime may not live long enough
12   --> $DIR/issue-54124.rs:2:22
13    |
14 LL | fn test<'a>() {
15    |         -- lifetime `'a` defined here
16 LL |     let _:fn(&()) = |_:&'a ()| {};
17    |                      ^ requires that `'a` must outlive `'static`
18
19 error: aborting due to 2 previous errors
20