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 Normal View History

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