rust/tests/ui/async-await/issues/issue-78600.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
166 B
Rust
Raw Permalink Normal View History

2023-09-07 22:00:59 -05:00
//@ check-pass
2021-02-12 02:50:25 -06:00
//@ edition:2018
struct S<'a>(&'a i32);
impl<'a> S<'a> {
async fn new(i: &'a i32) -> Result<Self, ()> {
Ok(S(&22))
}
}
fn main() {}