Files
kotlin-fork/idea/testData/refactoring/introduceVariable/kt38449_int.kt
T
2020-05-04 03:49:28 +00:00

7 lines
105 B
Kotlin
Vendored

fun b(body: () -> Int) = body()
class A {
fun test() = b {
<selection>24</selection>
}
}