about summary refs log tree commit diff
path: root/tests/ui/suggestions/suggest-box.rs
blob: c31320c548594ae602f5df5abd9eceec131f5b3e (plain)
1
2
3
4
5
6
7
8
//@ run-rustfix

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