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

4 lines
92 B
Kotlin
Vendored

// HIGHLIGHT: INFORMATION
fun test(foo: (() -> Unit)?) {
<caret>if (foo != null) foo()
}