blob: 1d1f555080c98b4e29795fe08b3fd672ab725a33 [file] [log] [blame]
// edition:2021
// check-pass
#![allow(incomplete_features)]
use std::fmt::Debug;
trait Foo {
#[allow(async_fn_in_trait)]
async fn baz(&self) -> impl Debug {
""
}
}
struct Bar;
impl Foo for Bar {}
fn main() {
let _ = Bar.baz();
}