mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
bf66723c0e
Also remove a note that I don't consider to be very useful in context.
15 lines
582 B
Plaintext
15 lines
582 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/regions-lifetime-bounds-on-fns.rs:20:43
|
|
|
|
|
LL | let _: fn(&mut &isize, &mut &isize) = a;
|
|
| ---------------------------- ^ one type is more general than the other
|
|
| |
|
|
| expected due to this
|
|
|
|
|
= 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`.
|