-
Welcome to Scala version 2.8.0.r18844-b20091001021053 (Java HotSpot(TM) Client VM, Java 1.7.0-ea).
Type in expressions to have them evaluated.
Type :help for more information.
scala> val args = Array…
-
I'm generating an RSS feed of events. When the following code hits an escaped apostrophe in the input it dies.
``` javascript
var entry = items[i];
channel.ele("item")
.ele(…
-
When using the scala compiler, the following code fails properly:
object Crasher
object Test {
def good(n : Int) : Unit = {
}
def kaboom(n: Int) : Crasher = {
}
}
/home/chemouil/testCrash.sca…
-
Given the following test code:
```scala
trait a {
object foo {
def bar = List(1,2).map(_*2)
}
}
trait b {
object foo {
def bar = List(1,2).map(_*2)
}
class foo { }
}
```
...the gen…