Files
rust/tests/crashes/135617.rs

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

14 lines
162 B
Rust
Raw Normal View History

2025-01-25 22:30:38 +01:00
//@ known-bug: #135617
trait Project {
const ASSOC: usize;
}
fn foo()
where
for<'a> (): Project,
{
[(); <() as Project>::ASSOC];
}
pub fn main() {}