Files
kotlin-fork/idea/testData/refactoring/introduceVariable/ReplaceOccurence.kt.after
T
2014-04-17 19:01:17 +04:00

5 lines
51 B
Plaintext

fun a(x: Int) {}
fun b() {
val i = 1
a(i)
}