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