Files
kotlin-fork/idea/testData/intentions/branched/ifThenToSafeAccess/implicitReceiver.kt
T

3 lines
81 B
Kotlin
Vendored

// WITH_RUNTIME
fun String?.foo() = <caret>if (this == null) null else isEmpty()