0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-28 09:36:05 +01:00
rust/tests/crashes/117629.rs
2024-04-14 11:21:51 +02:00

12 lines
136 B
Rust

//@ known-bug: #117629
//@ edition:2021
#![feature(const_trait_impl)]
#[const_trait]
trait Tr {
async fn ft1() {}
}
fn main() {}