summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Compile/Compute
diff options
context:
space:
mode:
authorInari Listenmaa <inari.listenmaa@gmail.com>2020-06-04 19:56:31 +0200
committerInari Listenmaa <inari.listenmaa@gmail.com>2020-06-04 19:56:31 +0200
commita4e3bce6bba915ea9dba0c1a34519f9cde9d243e (patch)
tree6fa5dedc69181cd84334b713b09fb80eab54c684 /src/compiler/GF/Compile/Compute
parent9a903c166f8e41da0fc23cfbad7b8cc4bcfb2fcc (diff)
Add clarification to "Pattern is not linear" error msg.
Diffstat (limited to 'src/compiler/GF/Compile/Compute')
-rw-r--r--src/compiler/GF/Compile/Compute/ConcreteNew.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/GF/Compile/Compute/ConcreteNew.hs b/src/compiler/GF/Compile/Compute/ConcreteNew.hs
index a9ae63960..0edf43c8d 100644
--- a/src/compiler/GF/Compile/Compute/ConcreteNew.hs
+++ b/src/compiler/GF/Compile/Compute/ConcreteNew.hs
@@ -546,7 +546,7 @@ value2term' stop loc xs v0 =
linPattVars p =
if null dups
then return pvs
- else fail.render $ hang "Pattern is not linear:" 4 (ppPatt Unqualified 0 p)
+ else fail.render $ hang "Pattern is not linear. All variable names on the left-hand side must be distinct." 4 (ppPatt Unqualified 0 p)
where
allpvs = allPattVars p
pvs = nub allpvs