1 2 3 4 5 6 7 8
// run-rustfix fn main() { let _x: Box<dyn Fn() -> Result<(), ()>> = || { //~ ERROR mismatched types Err(())?; Ok(()) }; }