summaryrefslogtreecommitdiff
path: root/test/files/jvm/manifests.scala
Commit message (Collapse)AuthorAgeFilesLines
* Removing the code which has been deprecated sin...Paul Phillips2011-08-151-1/+1
| | | | | | | Removing the code which has been deprecated since 2.8.0. Contributed by Simon Ochsenreither, although deleting code is such fun one hesitates to call it a contribution. Still, we will. Closes SI-4860, no review.
* Renamed Application to App.Martin Odersky2011-02-211-1/+1
|
* "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