rust/tests/crashes/130411.rs

7 lines
99 B
Rust

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