12 lines
144 B
Kotlin
Vendored
12 lines
144 B
Kotlin
Vendored
package n
|
|
|
|
class C {
|
|
operator fun component1() = 1
|
|
operator fun component2() = 2
|
|
}
|
|
|
|
fun test(c: C) {
|
|
val (a, b) = c
|
|
val d = 1
|
|
}
|