Files
kotlin-fork/idea/testData/refactoring/introduceVariable/extractToScope/insideNestedLambdaInFunExpression.kt
T
2015-11-24 20:40:07 +03:00

5 lines
103 B
Kotlin
Vendored

fun foo(f: () -> Int) = f()
fun test() {
foo(fun() = foo { (<selection>1 + 2</selection>) * 3 })
}