`val (a,b) = Pair("hey", "you")` why is this code ...
# announcements
c
val (a,b) = Pair("hey", "you")
why is this code not valid on class level?
u
christophsturm: Top level declarations are compiled to static members of generated classes. So in kotlin you can't use destructuring declaration on class members.