You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[mutate]
pub fn if_let() -> bool {
let x = Some(true);
if let Some(b) = x {
b
} else {
false
}
}
error: expected expression, found statement (`let`)
--> src/test.rs:10:8
|
167 | if let Some(b) = x {
| ^^^ expected expression
|
= note: variable declaration using `let` is a statement
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: