unison/unison-src/transcripts/update-type-delete-constructor-with-dependent.md

28 lines
290 B
Markdown
Raw Permalink Normal View History

2023-11-08 17:33:42 +03:00
```ucm:hide
scratch/main> builtins.merge lib.builtin
2023-11-08 17:16:19 +03:00
```
```unison
2023-11-08 17:33:42 +03:00
unique type Foo
2023-11-08 17:16:19 +03:00
= Bar Nat
| Baz Nat Nat
foo : Foo -> Nat
foo = cases
Bar n -> n
Baz n m -> n + m
```
```ucm
scratch/main> add
2023-11-08 17:16:19 +03:00
```
```unison
2023-11-08 17:33:42 +03:00
unique type Foo
2023-11-08 17:16:19 +03:00
= Bar Nat
```
```ucm:error
scratch/main> update
2023-11-08 17:16:19 +03:00
```