rust/tests/crashes/124342.rs

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

7 lines
116 B
Rust
Raw Normal View History

2024-04-26 10:20:16 -05:00
//@ known-bug: #124342
trait Trait2 : Trait {
reuse <() as Trait>::async {
(async || {}).await;
};
}