Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/functionInVariableCall.kt
T
2019-02-28 10:44:05 +03:00

7 lines
126 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
class Foo(val bar: () -> Int)
fun bar(foo: Foo?) {
foo?.<caret>let { it.bar() }
}