My minimal reproduction: ```rust #![feature(const_fn)] const fn bad(input: fn()) { input() } fn main() { bad(|| {}); } ``` Sidenote: I'm pretty sure this is the smallest working ICE that I've seen in Rust so far.
My minimal reproduction:
Sidenote: I'm pretty sure this is the smallest working ICE that I've seen in Rust so far.