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

6 lines
96 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(pair: Pair<Int, Int>) {
val (first1, _) = pair
val first = 42
}