rust/tests/crashes/130411.rs

7 lines
99 B
Rust
Raw Normal View History

2024-09-17 17:10:25 -05:00
//@ known-bug: #130411
trait Project {
const SELF: Self;
}
fn take1(_: Project<SELF = {}>) {}