Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/callVariable2.kt.after
T
2020-10-23 15:46:54 +09:00

5 lines
74 B
Plaintext
Vendored

class Foo(val f: () -> Unit)
fun test(foo: Foo?) {
foo?.f?.invoke()
}