summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/suggest-box.fixed
blob: 3de02cd0bd4814ab2b535a94e8dec18e6b916ac4 (plain)
1
2
3
4
5
6
7
8
// run-rustfix

fn main() {
    let _x: Box<dyn Fn() -> Result<(), ()>> = Box::new(|| { //~ ERROR mismatched types
        Err(())?;
        Ok(())
    });
}