Files
kotlin-fork/compiler/testData/ir/irText/expressions/objectReferenceInFieldInitializer.kt
T
2021-04-26 12:50:55 +03:00

8 lines
110 B
Kotlin
Vendored

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