24 lines
396 B
Rust
24 lines
396 B
Rust
// edition:2021
|
|
// known-bug: #108304
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
// revisions: current next
|
|
|
|
#![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();
|
|
}
|