There is a regression in the ability to use sequence to apply transducers to eductions that was introduced with 1.9.562.
In 1.9.542 and earlier,
produced ("1").
Minimal repro:
CLJS-2034:
Attached patch with fix and test.
I don't know if this is a bug or not, but with 1.9.542
and after the patch:
I wonder if there is some public code path where this would show up (as opposed to directly calling iter).
`(iter (eduction [1 2 3]))` is now a TransformerIterator, which doesn't have a print method.
For comparison with Clojure: