I would expect this to give me a type error since (String, String) in the else case is not Pair.
case class Pair(x: String, y: String)
val value = Console.readLine.toBoolean
val Pair(x, y) =
if (value) Pair("foo", "bar")
else false
Instead, if I enter false, I get the following error at run time.
scala.MatchError: (foo,bar) (of class scala.Tuple2)
I suppose the deconstruction is just sugar for assigning the result to a variable of type Any and then matching on it, but it seems unfortunate that Scala lets this fly.