unison/unison-src/transcripts/fix4556.output.md

66 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

``` unison
2024-01-05 19:21:43 +03:00
thing = 3
foo.hello = 5 + thing
bar.hello = 5 + thing
hey = foo.hello
```
``` ucm
2024-01-05 19:21:43 +03:00
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`:
bar.hello : Nat
foo.hello : Nat
hey : Nat
thing : Nat
```
``` ucm
scratch/main> add
2024-01-05 19:21:43 +03:00
⍟ I've added these definitions:
bar.hello : Nat
foo.hello : Nat
hey : Nat
thing : Nat
```
``` unison
2024-01-05 19:21:43 +03:00
thing = 2
```
``` ucm
2024-01-05 19:21:43 +03:00
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 names already exist. You can `update` them to your
new definition:
thing : Nat
```
``` ucm
scratch/main> update
2024-01-05 19:21:43 +03:00
Okay, I'm searching the branch for code that needs to be
updated...
That's done. Now I'm making sure everything typechecks...
2024-01-05 00:09:53 +03:00
Everything typechecks, so I'm saving the results...
2024-01-05 19:21:43 +03:00
2024-01-05 00:09:53 +03:00
Done.
2024-01-05 19:21:43 +03:00
```