summaryrefslogtreecommitdiff
path: root/test/files/jvm/manifests.check
Commit message (Collapse)AuthorAgeFilesLines
* "I invite everyone to change this rule, and obs...Paul Phillips2010-11-291-2/+0
| | | | | | | | | | | | | | | | | | | | | "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.
* new arrays are done.Martin Odersky2009-09-211-2/+2
|
* Fixed memory leaks for streams.Martin Odersky2009-08-181-17/+17
|
* massive new collections checkin.Martin Odersky2009-05-081-8/+8
|
* disabled one test on Java 1.4michelou2008-12-091-2/+0
|
* added manifest tests and util.Marshalmichelou2008-11-251-10/+44
|
* Fixed classOf problems (issues #841, #876).Iulian Dragos2008-05-171-3/+3
| | | | | Updated manifests.check to reflect the new way 'void' is represented.
* made manifests serializablemichelou2008-05-021-0/+25