rust/tests/ui/issues/issue-24322.stderr

15 lines
504 B
Plaintext

error[E0308]: mismatched types
--> $DIR/issue-24322.rs:8:29
|
LL | let x: &fn(&B) -> u32 = &B::func;
| -------------- ^^^^^^^^ expected `&fn(&B) -> u32`, found `&fn(&B) -> u32 {B::func}`
| |
| expected due to this
|
= note: expected reference `&for<'a> fn(&'a B) -> _`
found reference `&for<'a> fn(&'a B) -> _ {B::func}`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.