Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/implicitReceiver.kt
T
2017-12-26 18:39:47 +03:00

3 lines
81 B
Kotlin
Vendored

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