This Rust code makes rustc stop with an internal compile error. ``` fn main() { enum Msg { Start, Measure(Fn() -> usize), } let _ = Msg::Start; } ```