blob: cedb58784662e70b6d292c19189f3c65ff9ea9b9 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0617]: can't pass `fn(*const u8) {bar}` to variadic function
--> $DIR/issue-32201.rs:9:16
|
LL | foo(0, bar);
| ^^^ help: cast the value to `fn(*const u8)`: `bar as fn(*const u8)`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0617`.
|