Welcome! Please see the About page for a little more info on how this works.

0 votes
in core.logic by

I don't have a good repro case for this, I hit the issue in the middle of some other code.

on like 2332 or so of master you have some code like:

`
(cond
...

 (lcons? v)
  (loop [u u v (seq v) cs cs]

...
)
`

This is obviously incorrect, because anything that returns true to lcons? will throw an exception with you call seq on it.

2 Answers

0 votes
by

Comment made by: hiredman

looks like a dupe of http://dev.clojure.org/jira/browse/LOGIC-174

0 votes
by
Reference: https://clojure.atlassian.net/browse/LOGIC-183 (reported by hiredman)
...