summaryrefslogtreecommitdiff
path: root/test/files/run/t6223.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7258 Don't assume order of reflection values in t6223Simon Ochsenreither2013-03-151-2/+2
| | | | | | | | test/files/run/t6223's check file expects a specific ordering of the reflected values. The ordering is not guaranteed by the runtime/reflection API and can change. Therefore, sort the values before comparing them.
* Move side-effecting call out of debuglog(). Fixes SI-6223.Erik Osheim2012-08-131-0/+11
This change fixes a situation in which method calls aren't being properly specialized. All the existing tests pass; in addition, it likely fixes other specialization bugs (and improves performance of specialized code). Also includes a small regression test.