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

6 lines
92 B
Plaintext
Vendored

// WITH_RUNTIME
class Foo(val bar: () -> Int)
fun bar(foo: Foo?) {
foo?.bar?.invoke()
}