Files
kotlin-fork/compiler/testData/ir/irText/expressions/objectReferenceInFieldInitializer.kt
T
2018-10-02 17:08:55 +03:00

6 lines
92 B
Kotlin
Vendored

object A {
private val a = "$"
private val b = "1234$a"
private val c = 10000
}