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

5 lines
90 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(t: Triple<String, Int, Boolean>) {
val (_, _, <caret>_) = t
}