unison/unison-src/transcripts/namespace-deletion-regression.md

17 lines
453 B
Markdown
Raw Permalink Normal View History

# Namespace deletion regression test
See https://github.com/unisonweb/unison/issues/1552
2021-11-09 02:07:34 +03:00
If branch operations aren't performed in the correct order it's possible to end up with unexpected results.
Previously the following sequence delete the current namespace
unexpectedly 😬.
```ucm
scratch/main> alias.term ##Nat.+ Nat.+
scratch/main> ls Nat
scratch/main> move.namespace Nat Nat.operators
scratch/main> ls Nat
scratch/main> ls Nat.operators
```