2022-10-04 22:52:38 -05:00
|
|
|
// edition:2021
|
2023-07-30 15:31:27 -05:00
|
|
|
// check-pass
|
2022-10-04 22:52:38 -05:00
|
|
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
trait Foo {
|
2023-09-26 15:20:25 -05:00
|
|
|
#[allow(async_fn_in_trait)]
|
2022-10-04 22:52:38 -05:00
|
|
|
async fn baz(&self) -> impl Debug {
|
|
|
|
""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = Bar.baz();
|
|
|
|
}
|