mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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() {}
|