The Scala compiler currently cannot infer return types of recursive methods as in the following code
def foo(i:Int) = if (i > 0) foo (i-1) else 0
Is there any ambuigity in the above statement? (i.e., is any type other than Int possible?)
I can imagine that in more complex example, it will be difficult to infer the type.
Is it possible to further characterize the cases of recursive methods where we can(not) infer the types?
[EDIT:] The compiler is intelligent enough to figure out that String is incorrect.
scala> def foo(i:Int):String = if (i > 0) foo (i-1) else 0
<console>:5: error: type mismatch;
found : Int(0)
required: String
Doubleis another possible type. – Amitabh Oct 11 '11 at 19:16foo: Doubleis possible just as it is possible to declaredef f = 2as a: Double. Yet, the compiler infersdef f = 2to be an: Int. A sensible recursive type inferrer would not assumefoo: Doublefor the same reason in your example. – Debilski Oct 11 '11 at 22:01