teedee
val tup1 = Triple(1, 2, 3) val tup2 = Triple(4, 5, 6) var (a, b, c) = tup1 // this works (a, b, c) = tup2 // this doesn't work