blob: d2cad8d34646efa31c658390643fafd79dc02a85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0308]: mismatched types
--> $DIR/issue-24322.rs:18:29
|
LL | let x: &fn(&B) -> u32 = &B::func; //~ ERROR mismatched types
| ^^^^^^^^ expected fn pointer, found fn item
|
= note: expected type `&for<'r> fn(&'r B) -> u32`
found type `&for<'r> fn(&'r B) -> u32 {B::func}`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|