Files
kotlin-fork/idea/testData/refactoring/extractFunction/initializers/properties/localPropertyWithLambda.kt.after
T
2014-07-11 19:13:17 +04:00

7 lines
109 B
Plaintext

fun bar(a: Int, b: Int) {
fun i(): Int {
return a + b
}
val foo = { i() - 1 }.invoke()
}