mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
164 B
Rust
13 lines
164 B
Rust
// check-pass
|
|
// edition:2018
|
|
|
|
struct S<'a>(&'a i32);
|
|
|
|
impl<'a> S<'a> {
|
|
async fn new(i: &'a i32) -> Result<Self, ()> {
|
|
Ok(S(&22))
|
|
}
|
|
}
|
|
|
|
fn main() {}
|