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

9 lines
138 B
Kotlin
Vendored

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