rust/tests/ui/impl-trait/in-trait/early.rs

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

24 lines
380 B
Rust
Raw Normal View History

2022-10-24 03:33:42 +00:00
// check-pass
// edition:2021
#![allow(incomplete_features)]
pub trait Foo {
2023-09-26 20:20:25 +00:00
#[allow(async_fn_in_trait)]
2022-10-24 03:33:42 +00:00
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() {}