]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/user-annotations/constant-in-expr-trait-item-1.nll.stderr
5f3212eb9aa349ea5ba3218ef54c5c7945b223c3
[rustc.git] / src / test / ui / nll / user-annotations / constant-in-expr-trait-item-1.nll.stderr
1 error: lifetime may not live long enough
2 --> $DIR/constant-in-expr-trait-item-1.rs:10:5
3 |
4 LL | fn foo<'a>(_: &'a u32) -> &'static u32 {
5 | -- lifetime `'a` defined here
6 LL | <() as Foo<'a>>::C
7 | ^^^^^^^^^^^^^^^^^^ returning this value requires that `'a` must outlive `'static`
8 |
9 = help: consider replacing `'a` with `'static`
10
11 error: aborting due to previous error
12