rust/tests/crashes/137865.rs
2025-03-08 20:13:07 +01:00

5 lines
100 B
Rust

//@ known-bug: #137865
trait Foo {
type Assoc<const N: Self>;
fn foo() -> Self::Assoc<3>;
}