Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/inInlineFunction.kt
T
2018-06-19 12:48:12 +03:00

7 lines
100 B
Kotlin
Vendored

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