mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 23:05:53 +00:00
9 lines
115 B
Rust
9 lines
115 B
Rust
// edition:2021
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
pub trait Meow {
|
|
/// Who's a good dog?
|
|
async fn woof();
|
|
}
|