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