rust/tests/crashes/130411.rs

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

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 = {}>) {}