Let me clear, I'd like to do something like ```val...
# announcements
e
Let me clear, I'd like to do something like
Copy code
val (aX, aY) = a
       when(aX) {
           is Float -> {
               res.x = aX < b.x.toFloat()
               res.y = aY < b.y.toFloat() // error
           }
But of course it complains on the second line because the
when
was only on
aX
and not also on
aY