]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/issue-61949-self-return-type.stderr
Rollup merge of #106960 - estebank:parse-anon-enums, r=cjgillot
[rust.git] / tests / ui / async-await / issue-61949-self-return-type.stderr
1 error[E0658]: `async fn` return type cannot contain a projection or `Self` that references lifetimes from a parent scope
2   --> $DIR/issue-61949-self-return-type.rs:11:40
3    |
4 LL |     pub async fn new(_bar: &'a i32) -> Self {
5    |                                        ^^^^ help: consider spelling out the type instead: `Foo<'a>`
6    |
7    = note: see issue #103532 <https://github.com/rust-lang/rust/issues/103532> for more information
8    = help: add `#![feature(impl_trait_projections)]` to the crate attributes to enable
9
10 error[E0597]: `bar` does not live long enough
11   --> $DIR/issue-61949-self-return-type.rs:22:18
12    |
13 LL |     let x = {
14    |         - borrow later stored here
15 LL |         let bar = 22;
16 LL |         Foo::new(&bar).await
17    |                  ^^^^ borrowed value does not live long enough
18 LL |
19 LL |     };
20    |     - `bar` dropped here while still borrowed
21
22 error: aborting due to 2 previous errors
23
24 Some errors have detailed explanations: E0597, E0658.
25 For more information about an error, try `rustc --explain E0597`.