mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
22 lines
296 B
Rust
22 lines
296 B
Rust
// check-pass
|
|
// edition:2021
|
|
|
|
#![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();
|
|
}
|