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

3 lines
87 B
Kotlin

fun bar(a: Int, b: Int) {
val foo = { <selection>a + b</selection> - 1 }.invoke()
}