mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
14 lines
295 B
Plaintext
14 lines
295 B
Plaintext
error: cast cannot be followed by `.yield`
|
|
--> $DIR/postfix-yield-after-cast.rs:7:9
|
|
|
|
|
LL | 0 as u8.yield
|
|
| ^^^^^^^
|
|
|
|
|
help: try surrounding the expression in parentheses
|
|
|
|
|
LL | (0 as u8).yield
|
|
| + +
|
|
|
|
error: aborting due to 1 previous error
|
|
|