Hi, I appear to have found this ICE that only occurs on nightly. Reproducing it is as simple as the below example: ```rust #![feature(unboxed_closures)] fn main() { unsafe { std::mem::transmute::<usize, extern "rust-call" fn()>(5); } } ```