É um fato triste da vida no Scala que, se você instanciar uma lista [Int], pode verificar se sua instância é uma lista e se qualquer elemento individual dela é um Int, mas não é uma lista [ Int], como pode ser facilmente verificado:
scala> List(1,2,3) match {
| case l : List[String] => println("A list of strings?!")
| case _ => println("Ok")
| }
warning: there were unchecked warnings; re-run with -unchecked for details
A list of strings?!
A opção -unchecked coloca a culpa diretamente no apagamento de tipo:
scala> List(1,2,3) match {
| case l : List[String] => println("A list of strings?!")
| case _ => println("Ok")
| }
<console>:6: warning: non variable type-argument String in type pattern is unchecked since it is eliminated by erasure
case l : List[String] => println("A list of strings?!")
^
A list of strings?!
Por que é isso e como faço para contornar isso?
scala 2.10.2
, vi esse aviso: <console>:9: warning: fruitless type test: a value of type List[Int] cannot also be a List[String] (but still might match its erasure) case list: List[String] => println("a list of strings?") ^
acho sua pergunta e resposta muito úteis, mas não tenho certeza se esse aviso atualizado é útil para os leitores.