]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-55394.stderr
Rollup merge of #65402 - michaelwoerister:pgo-troubleshooting-docs, r=alexcrichton
[rust.git] / src / test / ui / nll / issue-55394.stderr
1 error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'s` due to conflicting requirements
2   --> $DIR/issue-55394.rs:9:9
3    |
4 LL |         Foo { bar }
5    |         ^^^
6    |
7 note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the method body at 8:5...
8   --> $DIR/issue-55394.rs:8:5
9    |
10 LL | /     fn new(bar: &mut Bar) -> Self {
11 LL | |         Foo { bar }
12 LL | |     }
13    | |_____^
14 note: ...so that reference does not outlive borrowed content
15   --> $DIR/issue-55394.rs:9:15
16    |
17 LL |         Foo { bar }
18    |               ^^^
19 note: but, the lifetime must be valid for the lifetime `'_` as defined on the impl at 7:10...
20   --> $DIR/issue-55394.rs:7:10
21    |
22 LL | impl Foo<'_> {
23    |          ^^
24    = note: ...so that the expression is assignable:
25            expected Foo<'_>
26               found Foo<'_>
27
28 error: aborting due to previous error
29
30 For more information about this error, try `rustc --explain E0495`.