mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
20 lines
199 B
Rust
20 lines
199 B
Rust
// check-pass
|
|
// edition:2018
|
|
|
|
struct Xyz {
|
|
a: u64,
|
|
}
|
|
|
|
trait Foo {}
|
|
|
|
impl Xyz {
|
|
async fn do_sth<'a>(
|
|
&'a self, foo: &'a dyn Foo
|
|
) -> bool
|
|
{
|
|
true
|
|
}
|
|
}
|
|
|
|
fn main() {}
|