rust/tests/ui/impl-trait/in-trait/default-body-with-rpit.rs
Michael Goulet 28d58f6524 Bless tests
2023-10-03 00:37:18 +00:00

23 lines
328 B
Rust

// edition:2021
// check-pass
#![feature(async_fn_in_trait, return_position_impl_trait_in_trait)]
#![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();
}