summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/issues/issue-86642.rs
blob: 49f8944ac4af0c8f5c570552a4d80fe7208867b9 (plain)
1
2
3
4
5
6
7
8
static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
    //~^ `impl Trait` only allowed in function and inherent method argument and return types
    let res = (move |source| Ok(source))(source);
    let res = res.or((move |source| Ok(source))(source));
    res
};

fn main() {}