Files
kotlin/compiler/testData/codegen/bytecodeText/constProperty/noInline.kt
Mikhail Zarechenskiy 0134b8819b Optimize const vals by inlining them at use sites
#KT-11734 Fixed
 #KT-13570 Fixed
2016-12-05 22:11:33 +03:00

9 lines
101 B
Kotlin
Vendored

// LANGUAGE_VERSION: 1.0
const val z = 0
fun a() {
val x = z
}
// 1 GETSTATIC NoInlineKt.z : I