mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +00:00
12 lines
136 B
Rust
12 lines
136 B
Rust
//@ known-bug: #117629
|
|
//@ edition:2021
|
|
|
|
#![feature(const_trait_impl)]
|
|
|
|
#[const_trait]
|
|
trait Tr {
|
|
async fn ft1() {}
|
|
}
|
|
|
|
fn main() {}
|