mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
11 lines
160 B
Rust
11 lines
160 B
Rust
![]() |
// compile-flags:--crate-type=lib
|
||
|
// edition:2021
|
||
|
// check-pass
|
||
|
|
||
|
#![feature(async_fn_in_trait)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
trait T {
|
||
|
async fn foo();
|
||
|
}
|