rust/tests/crashes/117629.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
136 B
Rust
Raw Normal View History

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