Try in REPL, which makes the answer obvious:
scala> val exceptions = new Array[Char]('+') exceptions: Array[Char] = Array( , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , )
+ has promotion char -to-int.
scala> val exceptions = Array[Char]('+') exceptions: Array[Char] = Array(+) scala> exceptions.contains('+') res3: Boolean = true
is the equivalent of a List case.