summaryrefslogtreecommitdiff
path: root/test/files/run/t6271.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fixes SI-6271 - Missing isEmpty override for views.Josh Suereth2012-09-061-0/+32
GenIterableView didn't override isEmpty for views to look at *filtered* iterator, but was instead pulling unfiltered iterator and causing issues. Chalk up another bizzare bug to lack of insight/visibility into linearization and what havoc overriding new methods can spew on our library.