unison/unison-src/transcripts/fix1731.md
2024-06-25 11:11:07 -07:00

23 lines
305 B
Markdown

```ucm:hide
scratch/main> builtins.merge
```
```unison:hide
structural ability CLI where
print : Text ->{CLI} ()
input : {CLI} Text
```
```ucm:hide
scratch/main> add
```
The `input` here should parse as a wildcard, not as `CLI.input`.
```unison
repro : Text -> ()
repro = cases
input -> ()
```