mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00
10 lines
146 B
Rust
10 lines
146 B
Rust
![]() |
// edition:2021
|
||
|
|
||
|
#![feature(async_fn_in_trait)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
pub trait Meow {
|
||
|
/// Who's a good dog?
|
||
|
async fn woof();
|
||
|
}
|