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