summaryrefslogtreecommitdiff
path: root/test/files/run/t8637.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-8637 fixes toolbox phase corruptionEugene Burmako2014-05-301-0/+9
It turns out, Toolbox.typecheck hasn't been properly re-initializing its state between requests. In particular, globalPhase was left untouched, which made the compiler think that it's past typer, and that in turn disabled implicits. This commit applies a symptomatic fix to this problem.