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

7 lines
164 B
Kotlin
Vendored

// PROBLEM: none
class Something {
fun nullable(): Int? = null
}
fun Something?.nullable(value: Int): Int? =
<caret>if (this == null) value else nullable()