2021-03-07 15:08:52 +00:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/region-lifetime-bounds-on-fns-where-clause.rs:20:43
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
2020-06-06 10:31:51 +00:00
|
|
|
LL | let _: fn(&mut &isize, &mut &isize) = a;
|
2023-08-09 01:10:08 +00:00
|
|
|
| ---------------------------- ^ one type is more general than the other
|
|
|
|
| |
|
|
|
|
| expected due to this
|
2021-03-07 15:08:52 +00:00
|
|
|
|
|
2023-12-07 22:54:41 -05:00
|
|
|
= note: expected fn pointer `for<'a, 'b, 'c, 'd> fn(&'a mut &'b _, &'c mut &'d _)`
|
|
|
|
found fn item `for<'a, 'b> fn(&'a mut &_, &'b mut &_) {a::<'_, '_>}`
|
2019-01-27 11:03:21 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-01-27 11:03:21 +00:00
|
|
|
|
2021-03-07 15:08:52 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|