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

5 lines
93 B
Kotlin
Vendored

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