-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4388 from unisonweb/fix/no-crash-findCtorNames
- Loading branch information
Showing
9 changed files
with
209 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
```ucm:hide | ||
.> builtins.merge | ||
.> move.namespace builtin lib.builtin | ||
``` | ||
|
||
```unison | ||
unique type Foo = Bar Nat | ||
``` | ||
|
||
```ucm | ||
.> add | ||
.> delete.term Foo.Bar | ||
``` | ||
|
||
Now we've set up a situation where the original constructor missing. | ||
|
||
```unison | ||
unique type Foo = Bar Nat Nat | ||
``` | ||
|
||
```ucm:error | ||
.> view Foo | ||
.> update | ||
``` |
Oops, something went wrong.