Files
kotlin-fork/idea/resources/intentionDescriptions/ConvertParameterToReceiverIntention/before.kt.template
T

7 lines
106 B
Plaintext

fun foo(<spot>s: String</spot>, n: Int): Int {
return s.length() - n
}
fun test() {
foo("1", 2)
}