summaryrefslogtreecommitdiff
path: root/test/files/run/xMigration.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix default value for ScalaVersionSettingLukas Rytz2014-11-041-0/+19
The default value was NoScalaVersion before, because tryToSet (where the default was supposed to be set) is not called at all if the option is not specified. The initial value of Xmigration is set to NoScalaVersion (which it was before, the AnyScalaVersion argument was ignored). AnyScalaVersion would be wrong, it would give a warning in `Map(1 -> "eis").values` if the option was not specified. See tests.