Files
kotlin-fork/compiler/testData/codegen/bytecodeText/constProperty/noInline.kt
T
2021-05-25 19:23:30 +03:00

13 lines
261 B
Kotlin
Vendored

// !LANGUAGE: -InlineConstVals
// IGNORE_BACKEND_FIR: JVM_IR
// Fir2Ir IrConstTransformer inline everything it can unconditionally
// No fix atm, we don't have to support this feature
const val z = 0
fun a() {
val x = z
}
// 1 GETSTATIC NoInlineKt.z : I