Closed
Description
I found an ICE with the following:
#![feature(const_generics)]
struct Foo<const N : usize>();
fn main() {
let _ = Foo::<3>();
}
Here's a link to the Playground
I was poking around in collect.rs
, where the error seems to be from, and it looks like some cases in a match
statement are not being handled, but I'm not familiar enough with the code-base to see how to fix this.