Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/incorrectOffset.kt
T
2018-05-16 13:01:38 +03:00

7 lines
93 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(f: () -> String) {}
fun test() {
foo { -> "" <caret>}
}