mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
392 B
Text
16 lines
392 B
Text
error[E0308]: mismatched types
|
|
--> $DIR/issue-17033.rs:2:10
|
|
|
|
|
LL | (*p)(())
|
|
| ---- ^^ expected `&mut ()`, found `()`
|
|
| |
|
|
| arguments to this function are incorrect
|
|
|
|
|
help: consider mutably borrowing here
|
|
|
|
|
LL | (*p)(&mut ())
|
|
| ++++
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|