complete patterns in parenthesized-blocks

This commit is contained in:
Travis Staton 2023-01-17 11:06:14 -05:00
parent c0da1727c0
commit 6b0021f1cd
No known key found for this signature in database
GPG Key ID: 431DD911A00DAE49

View File

@ -1,5 +1,5 @@
x = (if true then 1 else 0) + 1
y = (match 1 with 1 -> 1) + 1
y = (match 1 with _ -> 1) + 1
> (x, y)