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

7 lines
97 B
Kotlin
Vendored

fun a(op: (Int) -> Int) {}
fun b() {
a {it}
a {
<selection>it</selection>
}
}