mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
bf66723c0e
Also remove a note that I don't consider to be very useful in context.
18 lines
628 B
Plaintext
18 lines
628 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/static-reference-to-fn-1.rs:17:15
|
|
|
|
|
LL | func: &foo,
|
|
| ^^^^ expected `&fn() -> Option<isize>`, found `&fn() -> Option<isize> {foo}`
|
|
|
|
|
= note: expected reference `&fn() -> Option<isize>`
|
|
found reference `&fn() -> Option<isize> {foo}`
|
|
= note: fn items are distinct from fn pointers
|
|
help: consider casting to a fn pointer
|
|
|
|
|
LL | func: &(foo as fn() -> Option<isize>),
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|