Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Remove dubious test
S06 currently says:
Because feeds are defined as lazy pipes, a chain of
feeds may not begin and end with the same array without
some kind of eager sequence point. That is, this isn't
guaranteed to work:
@DaTa <== grep { $_ % 2 } <== @DaTa;
[...]
Conjecture: if the cloning process eagerly duplicates @DaTa,
it could be forced to work. Not clear if this is desirable,
since ordinary clones just clone the container, not the value.
'Is not guaranteed to work' sounds rather weak and does not
justify to test for the code given to die.
Also, the code currently lives and the test only succeeded
because @DaTa wasn't visible within 'eval-dies-ok'.- Loading branch information