unison/unison-src/transcripts/fix4397.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

21 lines
356 B
Markdown

``` unison
structural type Foo f
= Foo (f ())
unique type Baz = Baz (Foo Bar)
unique type Bar
= Bar Baz
```
``` ucm
Loading changes detected in scratch.u.
Kind mismatch arising from
3 | unique type Baz = Baz (Foo Bar)
Foo expects an argument of kind: Type -> Type; however, it
is applied to Bar which has kind: Type.
```