Closed
Description
I suspect this was an intentional change but we should track down the PR and make sure it's mentioned in relnotes.
[INFO] [stdout] error: right curly brace `}` before `else` in a `let...else` statement not allowed
[INFO] [stdout] --> src/game.rs:349:13
[INFO] [stdout] |
[INFO] [stdout] 349 | } else { break; };
[INFO] [stdout] | ^
[INFO] [stdout] |
[INFO] [stdout] help: use parentheses instead of braces for this macro
[INFO] [stdout] |
[INFO] [stdout] 341 ~ let Some(msg) = select! ( else { break; };
[INFO] [stdout] 342 ~ let Some(msg) = select! ) else { break; };
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] error: right curly brace `}` before `else` in a `let...else` statement not allowed
[INFO] [stdout] --> src/lobby.rs:282:13
[INFO] [stdout] |
[INFO] [stdout] 282 | } else { break; };
[INFO] [stdout] | ^
[INFO] [stdout] |
[INFO] [stdout] help: use parentheses instead of braces for this macro
[INFO] [stdout] |
[INFO] [stdout] 274 ~ let Some(msg) = select! ( else { break; };
[INFO] [stdout] 275 ~ let Some(msg) = select! ) else { break; };
[INFO] [stdout] |