mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
21 lines
555 B
Plaintext
21 lines
555 B
Plaintext
error: removing an expression is not supported in this position
|
|
--> $DIR/cfg-stmt-recovery.rs:9:13
|
|
|
|
|
LL | let _ = #[cfg(FALSE)] 0;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: expected expression, found `;`
|
|
--> $DIR/cfg-stmt-recovery.rs:9:28
|
|
|
|
|
LL | let _ = #[cfg(FALSE)] 0;
|
|
| ^ expected expression
|
|
|
|
error: removing an expression is not supported in this position
|
|
--> $DIR/cfg-stmt-recovery.rs:9:13
|
|
|
|
|
LL | let _ = #[cfg(FALSE)] 0;
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|