unison/unison-src/transcripts/fix1731.md

23 lines
305 B
Markdown
Raw Permalink Normal View History

2020-11-11 19:41:55 +03:00
```ucm:hide
scratch/main> builtins.merge
2020-11-11 19:41:55 +03:00
```
```unison:hide
2021-08-24 21:33:27 +03:00
structural ability CLI where
2020-11-11 19:41:55 +03:00
print : Text ->{CLI} ()
input : {CLI} Text
```
```ucm:hide
scratch/main> add
2020-11-11 19:41:55 +03:00
```
The `input` here should parse as a wildcard, not as `CLI.input`.
```unison
repro : Text -> ()
repro = cases
input -> ()
```