Widening Union Types have been discussed here but I can't seem to find an answer to the following case
Let's start by looking at the following
val x = List(1, 2, "a")
This heterogeneous list is inferred as List[Any]
Just like it would in Scala 2
However the following
val x2 = List(List(1, 2), Vector("a", "b"))
is inferred as List[scala.collection.immutable.AbstractSeq[Int | String]]
This is rather confusing behavior. Why does two disjoint types' LUB get inferred as Any
in one case but a union type in another?
If it is just a design decision, are there any such cases that one should be aware of ?
smarter states
My interpretation of this statement is that it makes more sense to type
List(1,2)
asList[Int]
instead ofList[1 | 2]
, orList(new Cat, new Dog)
asList[Animal]
instead ofList[Cat | Dog]
.See also Dmytro's comment from related question (of mine)
Also see mention at 23:38 of the talk "Dotty and types: the story so far".
However widening of union is performed only once to avoid infinite LUB as per smarter: