ca16f4231f
#KT-4940 Fixed
8 lines
200 B
Kotlin
8 lines
200 B
Kotlin
// PARAM_TYPES: kotlin.Int, Number, Comparable<Int>, Any
|
|
// SIBLING:
|
|
fun main(args: Array<String>) {
|
|
val (a, b) = Data(1, 2)
|
|
<selection>a</selection>
|
|
}
|
|
|
|
data class Data(val a: Int, val b: Int) |