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