mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 19:33:16 +00:00
9 lines
288 B
Rust
9 lines
288 B
Rust
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() {}
|