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
With lbl_all mutable, it can be extended when new fields are used in pattern matching.
This handles examples with multiple fields:
```
type myDict = {name?:string, anyOtherField?: int}
let tst = (d: myDict) => switch d {
| {a:i, b:j} => i + j
| _ => 0
}
```
0 commit comments