mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
8 lines
88 B
Rust
8 lines
88 B
Rust
![]() |
// edition:2021
|
||
|
|
||
|
#![feature(async_fn_in_trait)]
|
||
|
|
||
|
pub trait Foo {
|
||
|
async fn test();
|
||
|
}
|