This fails to compile ``` trait Matrix { const EYE: f64; } fn get_EYE<M: Matrix>(t: M) { M::EYE } ``` with `error: Associated consts cannot depend on type parameters or Self. [E0329]`, but it should work.
This fails to compile
with
error: Associated consts cannot depend on type parameters or Self. [E0329], but it should work.