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

9 lines
107 B
Plaintext
Vendored

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