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