rust/tests/ui/regions/regions-lifetime-bounds-on-fns.stderr

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

15 lines
582 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2022-04-01 17:13:25 +00:00
--> $DIR/regions-lifetime-bounds-on-fns.rs:20:43
|
2020-06-06 10:31:51 +00:00
LL | let _: fn(&mut &isize, &mut &isize) = a;
| ---------------------------- ^ one type is more general than the other
| |
| expected due to this
|
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::<'_, '_>}`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.