6f2ed9a5a9
A reference to component* functions
10 lines
186 B
Kotlin
10 lines
186 B
Kotlin
package a
|
|
|
|
fun main(args: Array<String>) {
|
|
val p = Pair(1, 2)
|
|
val (a, b<caret>) = p
|
|
}
|
|
|
|
// MULTIRESOLVE
|
|
// REF: (in kotlin.Pair).component1()
|
|
// REF: (in kotlin.Pair).component2() |