aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/tool
diff options
context:
space:
mode:
authorEduardo Julian2019-10-17 20:51:39 -0400
committerEduardo Julian2019-10-17 20:51:39 -0400
commit94e5a6b6ce7ad4b103e9d55c1aad2bd376f5da67 (patch)
tree974e189415868dc8feb6fb151ae07ab6e594e24f /stdlib/source/lux/tool
parent299908a885d00ec735070a937f9720410fe224a9 (diff)
FIX old compiler could allow aliases to be defined more than once
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/tool/compiler/phase/analysis/module.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/tool/compiler/phase/analysis/module.lux b/stdlib/source/lux/tool/compiler/phase/analysis/module.lux
index bb1094b2a..a6e1bedbd 100644
--- a/stdlib/source/lux/tool/compiler/phase/analysis/module.lux
+++ b/stdlib/source/lux/tool/compiler/phase/analysis/module.lux
@@ -136,7 +136,7 @@
[]])
(#.Some already-existing)
- ((/.throw' cannot-define-more-than-once [self-name name]) state))))))
+ ((/.throw' ..cannot-define-more-than-once [self-name name]) state))))))
(def: #export (create hash name)
(-> Nat Text (Operation Any))