2022-09-24 18:53:53 +00:00
|
|
|
// compile-flags:--crate-type=lib
|
|
|
|
// edition:2021
|
|
|
|
// check-pass
|
|
|
|
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
trait T {
|
2023-09-26 20:20:25 +00:00
|
|
|
#[allow(async_fn_in_trait)]
|
2022-09-24 18:53:53 +00:00
|
|
|
async fn foo();
|
|
|
|
}
|