summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/cannot-infer-closure.rs
blob: bd5d10b417342ff42205cc35280047474256e2bb (plain)
1
2
3
4
5
6
7
fn main() {
    let x = |a: (), b: ()| {
        Err(a)?;
        Ok(b)
        //~^ ERROR type annotations needed
    };
}