2021-03-07 15:08:52 +00:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/hr-fn-aaa-as-aba.rs:12:58
|
2018-07-23 17:30:59 +03:00
|
|
|
|
|
|
|
|
LL | let a: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
|
2021-03-07 15:08:52 +00:00
|
|
|
| ^^^^^^^^^ one type is more general than the other
|
|
|
|
|
|
2021-09-25 13:04:00 -05:00
|
|
|
= note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
|
2021-03-07 15:08:52 +00:00
|
|
|
found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
|
2018-07-23 17:30:59 +03:00
|
|
|
|
2021-03-07 15:08:52 +00:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/hr-fn-aaa-as-aba.rs:20:12
|
2018-08-31 19:20:43 -04:00
|
|
|
|
|
2018-09-05 16:23:45 -04:00
|
|
|
LL | let _: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
|
2021-03-07 15:08:52 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
|
|
|
|
|
|
|
|
|
= note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
|
2021-09-25 13:04:00 -05:00
|
|
|
found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
|
2018-08-31 19:20:43 -04:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-07-23 17:30:59 +03:00
|
|
|
|
2021-03-07 15:08:52 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|