summaryrefslogtreecommitdiff
path: root/test/files/run/t6853.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-6853 changed private method remove to be tail recursive.Vinicius Miana2013-01-251-0/+18
Operations += and -= on mutable.ListMap rely on the private method remove to perform. This methods was implemented using recursion, but it was not tail recursive. When the ListMap got too big the += caused a StackOverflowError.