rust/tests/ui/regions/region-multiple-lifetime-bounds-on-fns-where-clause.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
682 B
Plaintext
Raw Normal View History

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;
| ----------------------------------------- ^ one type is more general than the other
| |
| expected due to this
|
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::<'_, '_, '_>}`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.