Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/implicitReceiver.kt
T
2019-06-07 12:23:54 +07:00

2 lines
80 B
Kotlin
Vendored

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