summaryrefslogtreecommitdiff
path: root/test/files/run/t6440.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-6440: Revert change to `TraversableLike.filterNot`Grzegorz Kossakowski2012-10-091-0/+1
Commit df9f470f14262b9b1002f022c2620d8c38835805 introduced a change to `TraversableLike.filterNot` which broke Stream implementation that does override `filter` implementation but does not override `filterNot` implementation. This shows clearly that reusing code for strict and non-strict collections is very problematic. Added a test-case covering this problem. Closes SI-6440. Review by @retronym.