unison/unison-src/transcripts/add-test-watch-roundtrip.md
2024-06-25 11:11:07 -07:00

16 lines
290 B
Markdown

```ucm:hide
scratch/main> builtins.mergeio
```
```unison:hide
test> foo : [Test.Result]
foo = []
```
Apparently when we add a test watch, we add a type annotation to it, even if it already has one. We don't want this to happen though!
```ucm
scratch/main> add
scratch/main> view foo
```