blob: 6009389b1bb2c5739d90d8b264a3591562eedf5e (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0605]: non-primitive cast: `[closure@$DIR/closure-no-fn-3.rs:6:28: 6:30]` as `fn() -> u8`
--> $DIR/closure-no-fn-3.rs:6:27
|
LL | let baz: fn() -> u8 = (|| { b }) as fn() -> u8;
| ^^^^^^^^^^^^^^^^^^^^^^^^ invalid cast
error: aborting due to previous error
For more information about this error, try `rustc --explain E0605`.
|