dotty icon indicating copy to clipboard operation
dotty copied to clipboard

Warn when pattern matching against non-nullable array

Open abeln opened this issue 6 years ago • 0 comments

The pattern matcher can't distinguish between

??? match {
  case a: Array[String|Null] => ???
  case a: Array[String] => ???
}

Should we warn the user when they try to do this?

abeln avatar Feb 14 '19 17:02 abeln