]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/user-annotations/constant-in-expr-inherent-1.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / nll / user-annotations / constant-in-expr-inherent-1.stderr
CommitLineData
48663c56
XL
1error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
2 --> $DIR/constant-in-expr-inherent-1.rs:8:5
3 |
4LL | <Foo<'a>>::C
5 | ^^^^^^^^^^^^
6 |
e74abb32 7note: first, the lifetime cannot outlive the lifetime `'a` as defined on the function body at 7:8...
48663c56 8 --> $DIR/constant-in-expr-inherent-1.rs:7:8
0bf4aa26
XL
9 |
10LL | fn foo<'a>(_: &'a u32) -> &'static u32 {
48663c56 11 | ^^
60c5eb7d
XL
12note: ...so that the types are compatible
13 --> $DIR/constant-in-expr-inherent-1.rs:8:5
14 |
15LL | <Foo<'a>>::C
16 | ^^^^^^^^^^^^
17 = note: expected `Foo<'_>`
18 found `Foo<'a>`
48663c56
XL
19 = note: but, the lifetime must be valid for the static lifetime...
20note: ...so that reference does not outlive borrowed content
21 --> $DIR/constant-in-expr-inherent-1.rs:8:5
22 |
532ac7d7 23LL | <Foo<'a>>::C
48663c56 24 | ^^^^^^^^^^^^
0bf4aa26
XL
25
26error: aborting due to previous error
27
e74abb32 28For more information about this error, try `rustc --explain E0495`.