2022-10-04 22:52:38 -05:00
|
|
|
// edition:2021
|
2022-11-24 10:58:32 -06:00
|
|
|
// known-bug: #108304
|
2023-03-16 14:29:01 -05:00
|
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
|
|
// revisions: current next
|
2022-10-04 22:52:38 -05:00
|
|
|
|
|
|
|
#![feature(async_fn_in_trait, return_position_impl_trait_in_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
async fn baz(&self) -> impl Debug {
|
|
|
|
""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = Bar.baz();
|
|
|
|
}
|