mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
27 lines
480 B
Rust
27 lines
480 B
Rust
trait MyFn<Arg> {
|
|
type Output;
|
|
fn call(&self, arg: Arg) -> Self::Output;
|
|
}
|
|
|
|
struct Wrap<F>(F);
|
|
|
|
impl<A, B, F> MyFn<A> for Wrap<F>
|
|
where
|
|
F: Fn(A) -> B
|
|
{
|
|
type Output = B;
|
|
|
|
fn call(&self, arg: A) -> Self::Output {
|
|
(self.0)(arg)
|
|
}
|
|
}
|
|
|
|
|
|
struct A;
|
|
fn test() -> impl for<'a> MyFn<&'a A, Output=impl Iterator + 'a> {
|
|
//~^ ERROR higher kinded lifetime bounds on nested opaque types are not supported yet
|
|
Wrap(|a| Some(a).into_iter())
|
|
}
|
|
|
|
fn main() {}
|