Files
kotlin-fork/compiler/testData/ir/irText/expressions/safeAssignment.kt
T
2016-10-18 09:09:30 +03:00

5 lines
56 B
Kotlin
Vendored

class C(var x: Int)
fun test(nc: C?) {
nc?.x = 42
}