mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-16 16:42:43 +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();
|
|
}
|