2022-09-11 02:42:04 -05:00
|
|
|
// check-pass
|
|
|
|
// edition:2021
|
|
|
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
trait Foo {
|
2023-09-26 15:20:25 -05:00
|
|
|
#[allow(async_fn_in_trait)]
|
2022-10-04 23:16:05 -05:00
|
|
|
async fn baz(&self) -> &str {
|
|
|
|
""
|
2022-09-11 02:42:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-04 23:16:05 -05:00
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = Bar.baz();
|
|
|
|
}
|