[MATCH-26] Bug in the way that constructor set for a column is computed Created: 05/Oct/11 Updated: 09/Oct/11 Resolved: 09/Oct/11 |
|
| Status: | Resolved |
| Project: | core.match |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Defect | Priority: | Major |
| Reporter: | David Nolen | Assignee: | David Nolen |
| Resolution: | Completed | Votes: | 0 |
| Labels: | None | ||
| Description |
(let [x '(1 2) y 1]
(match [x y]
[([1] :seq) _] :a0
[_ 1] :a1
[([1 2] :seq) _] :a2
[_ 2] :a3
:else :a4))
This returns :a2 when it should return :a1 |
| Comments |
| Comment by David Nolen [ 09/Oct/11 2:22 PM ] |
|
Fixed, https://github.com/clojure/core.match/commit/efa880320fc235536690ba8af078a59c17f3321d |