Files
kotlin/compiler/testData/codegen/bytecodeText/constants/kt9532.kt
Michael Bogdanov 3452fc8d02 Don't initialize const properties in constructor
#KT-9532 Fixed
2015-10-17 15:31:57 +03:00

11 lines
196 B
Kotlin
Vendored

object A {
private const val a = "$"
private const val b = "1234$a"
private const val c = 10000
}
//check that constant initializers inlined
// 0 GETSTATIC
// 2 PUTSTATIC A.INSTANCE