Files
kotlin-fork/idea/testData/refactoring/extractFunction/initializers/properties/topLevelPropertyWithLambda.kt.after
T

5 lines
75 B
Plaintext
Vendored

val a = 1
val b = 1
val foo = { i() - 1 }.invoke()
private fun i() = a + b