Files
kotlin-fork/idea/testData/intentions/replaceUnderscoreWithParameterName/destructuringDeclaration.kt
T

5 lines
102 B
Kotlin
Vendored

data class Data(val first: Int, val second: Int)
fun foo() {
val (first, <caret>_) = Data(1, 2)
}