2021-03-07 15:08:52 +00:00
|
|
|
error[E0308]: mismatched types
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/regions-lifetime-bounds-on-fns.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
|
|
|
|
|
2022-09-21 15:57:30 +00:00
|
|
|
= note: expected fn pointer `for<'a, 'b, 'c, 'd> fn(&'a mut &'b isize, &'c mut &'d isize)`
|
|
|
|
found fn item `for<'a, 'b> fn(&'a mut &isize, &'b mut &isize) {a::<'_, '_>}`
|
2019-01-27 11:03:21 +00:00
|
|
|
|
2022-05-20 06:00:42 +00:00
|
|
|
error: aborting due to 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`.
|