2017-09-25 10:36:08 -05:00
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:12:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | f1(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'r, 's> fn(&'r (), &'s ()) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `f1`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:26:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f1<F>(_: F) where F: Fn(&(), &()) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:13:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | f2(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'a, 'r> fn(&'a (), &'r ()) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `f2`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:27:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f2<F>(_: F) where F: for<'a> Fn(&'a (), &()) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:14:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | f3(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'r> fn(&(), &'r ()) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `f3`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:28:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f3<'a, F>(_: F) where F: Fn(&'a (), &()) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:15:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | f4(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'s, 'r> fn(&'s (), &'r ()) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `f4`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:29:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f4<F>(_: F) where F: for<'r> Fn(&(), &'r ()) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:16:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | f5(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'r> fn(&'r (), &'r ()) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `f5`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:30:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn f5<F>(_: F) where F: for<'r> Fn(&'r (), &'r ()) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:17:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | g1(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'r> fn(&'r (), std::boxed::Box<for<'s> std::ops::Fn(&'s ()) + 'static>) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `g1`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:33:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn g1<F>(_: F) where F: Fn(&(), Box<Fn(&())>) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:18:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | g2(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'r> fn(&'r (), for<'s> fn(&'s ())) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `g2`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:34:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn g2<F>(_: F) where F: Fn(&(), fn(&())) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:19:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | g3(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'s> fn(&'s (), std::boxed::Box<for<'r> std::ops::Fn(&'r ()) + 'static>) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `g3`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:35:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn g3<F>(_: F) where F: for<'s> Fn(&'s (), Box<Fn(&())>) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:20:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | g4(|_: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ -------------- found signature of `fn((), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'s> fn(&'s (), for<'r> fn(&'r ())) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `g4`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:36:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn g4<F>(_: F) where F: Fn(&(), for<'r> fn(&'r ())) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:21:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | h1(|_: (), _: (), _: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ ---------------------------- found signature of `fn((), (), (), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'r, 's> fn(&'r (), std::boxed::Box<for<'t0> std::ops::Fn(&'t0 ()) + 'static>, &'s (), for<'t0, 't1> fn(&'t0 (), &'t1 ())) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `h1`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:39:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn h1<F>(_: F) where F: Fn(&(), Box<Fn(&())>, &(), fn(&(), &())) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error[E0631]: type mismatch in closure arguments
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:22:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | h2(|_: (), _: (), _: (), _: ()| {}); //~ ERROR type mismatch
|
2017-12-10 13:12:17 -06:00
|
|
|
| ^^ ---------------------------- found signature of `fn((), (), (), ()) -> _`
|
2017-09-25 10:36:08 -05:00
|
|
|
| |
|
|
|
|
| expected signature of `for<'r, 't0> fn(&'r (), std::boxed::Box<for<'s> std::ops::Fn(&'s ()) + 'static>, &'t0 (), for<'s, 't1> fn(&'s (), &'t1 ())) -> _`
|
|
|
|
|
|
2018-01-15 16:26:36 -06:00
|
|
|
note: required by `h2`
|
|
|
|
--> $DIR/anonymous-higher-ranked-lifetime.rs:40:1
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn h2<F>(_: F) where F: for<'t0> Fn(&(), Box<Fn(&())>, &'t0 (), fn(&(), &())) {}
|
2018-01-15 16:26:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-09-25 10:36:08 -05:00
|
|
|
|
|
|
|
error: aborting due to 11 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0631"
|