Notice the following strange behavior (Scala 2.9.1.RC2):
scala> val spam = x => log(x)
spam: Double => Double = <function1>
scala> val spam = x => log(x)*log(x)
<console>:10: error: missing parameter type
val spam = x => log(x)*log(x)
^
scala> log(2)*log(2)
res30: Double = 0.4804530139182014
How come Scala can infer the type of the first one but not the second?
Another strangeness:
scala> def eggs(foo:Int=-1) = foo
<console>:1: error: identifier expected but integer literal found.
def eggs(foo:Int=-1) = foo
^
scala> def eggs(foo:Int= -1) = foo
eggs: (foo: Int)Int
What's going on here? Why does it choke when there isn't a space between = and -?