blob: 8953ff8158148f7a952eebdfa1fbd3137b4cd4fb (
plain)
1
2
3
4
5
6
7
8
|
static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
//~^ `impl Trait` not allowed outside of function and method return types
let res = (move |source| Ok(source))(source);
let res = res.or((move |source| Ok(source))(source));
res
};
fn main() {}
|