unison/unison-src/transcripts/fix3244.output.md
Greg Pfeil 0031542faf
Add a space before code block info strings
This is for consistency with the `cmark` style. Now the blocks we still
pretty-print ourselves will match the bulk of them that `cmark`
produces.
2024-07-10 13:56:07 -06:00

38 lines
779 B
Markdown

This tests an previously erroneous case in the pattern compiler. It was assuming
that the variables bound in a guard matched the variables bound in the rest of
the branch exactly, but apparently this needn't be the case.
``` unison
foo t =
(x, _) = t
f w = w + x
match t with
(x, y)
| y < 5 -> f x
| otherwise -> x + y
> foo (10,20)
```
``` ucm
Loading changes detected in scratch.u.
I found and typechecked these definitions in scratch.u. If you
do an `add` or `update`, here's how your codebase would
change:
⍟ These new definitions are ok to `add`:
foo : (Nat, Nat) -> Nat
Now evaluating any watch expressions (lines starting with
`>`)... Ctrl+C cancels.
10 | > foo (10,20)
30
```