Files
kotlin-fork/idea/testData/intentions/branched/ifThenToElvis/willNotInlineClassProperty.kt
T
2014-03-12 16:02:55 +04:00

9 lines
124 B
Kotlin

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