rust/tests/ui/impl-trait/in-trait/default-body.rs
2024-03-11 19:42:04 +00:00

20 lines
224 B
Rust

//@ check-pass
//@ edition:2021
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();
}