summaryrefslogtreecommitdiff
path: root/test/files/jvm/manifests.scala
Commit message (Collapse)AuthorAgeFilesLines
* "I invite everyone to change this rule, and obs...Paul Phillips2010-11-291-2/+5
| | | | | | | | | | | | | | | | | | | | | "I invite everyone to change this rule, and observe what breaks!" This much beloved comment from #1208 has been on my radar for two years. The worm has turned. Closes #1208. The inferred type of an object is now Foo.type instead of "object Foo". What once was this: scala> val x: Map[Int, Singleton] = Map(1 -> None) <console>:5: error: type mismatch; found : (Int, object None) required: (Int, Singleton) Now exudes a pleasing aura of workingness: scala> val x: Map[Int, Singleton] = Map(1 -> None) x: Map[Int,Singleton] = Map(1 -> None) No review.
* disabled one test on Java 1.4michelou2008-12-091-1/+1
|
* added manifest tests and util.Marshalmichelou2008-11-251-12/+67
|
* made manifests serializablemichelou2008-05-021-0/+61