mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
9 lines
254 B
Rust
9 lines
254 B
Rust
static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
|
|
//~^ ERROR `impl Trait` is not allowed in static types
|
|
let res = (move |source| Ok(source))(source);
|
|
let res = res.or((move |source| Ok(source))(source));
|
|
res
|
|
};
|
|
|
|
fn main() {}
|