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
25 |let null_cap : Capability = bitsToCap(0b0)
| ^------^
| Top-level let statement must not have any side effects. Found side effects: incomplete pattern match
But execution_mode_encdecis complete, unless I'm missing something.
The text was updated successfully, but these errors were encountered:
If I comment it out then it compiles without any issues, though presumably this isn't sound. It looks like although match is checked for completeness, mapping isn't, so the code just assumes it might be incomplete. This probably also explains why this doesn't produce a The following expression is unmatched warning:
Consider the following code:
It gives this error:
But
execution_mode_encdec
is complete, unless I'm missing something.The text was updated successfully, but these errors were encountered: