blob: 6b3f5aabcfdae0fe0907d360b2763c8f7122c728 [file] [log] [blame]
object A
object B {
operator fun A.component1() = 1
operator fun A.component2() = 2
}
fun B.test() {
val (x, y) = A
}