Is there any way to define a const generic in the where clause, currently it doesn't seem to work. If there isn't, are there any plans of adding it in the future?
My Failed Attempts
fn foo<N>()
where
const N:usize,
{}
fn foo<const N>()
where
N:usize
{}