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

7 lines
105 B
Kotlin
Vendored

class Foo(val f: () -> Unit)
fun test(foo: Foo?) {
<caret>if (foo != null) {
foo.f()
}
}