mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
24 lines
380 B
Rust
24 lines
380 B
Rust
// check-pass
|
|
// edition:2021
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
pub trait Foo {
|
|
#[allow(async_fn_in_trait)]
|
|
async fn bar<'a: 'a>(&'a mut self);
|
|
}
|
|
|
|
impl Foo for () {
|
|
async fn bar<'a: 'a>(&'a mut self) {}
|
|
}
|
|
|
|
pub trait Foo2 {
|
|
fn bar<'a: 'a>(&'a mut self) -> impl Sized + 'a;
|
|
}
|
|
|
|
impl Foo2 for () {
|
|
fn bar<'a: 'a>(&'a mut self) -> impl Sized + 'a {}
|
|
}
|
|
|
|
fn main() {}
|