rust/tests/crashes/130411.rs
2024-09-18 00:10:25 +02:00

7 lines
99 B
Rust

//@ known-bug: #130411
trait Project {
const SELF: Self;
}
fn take1(_: Project<SELF = {}>) {}