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

9 lines
124 B
Kotlin
Vendored

class F(a: Int?) {
val b = a
val c = if (b !=<caret> null) b else 2
}
fun main(args: Array<String>) {
F(1).c
}