Files
kotlin/compiler/testData/codegen/bytecodeText/constProperty/noInlineInCmp.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

10 lines
116 B
Kotlin
Vendored

// LANGUAGE_VERSION: 1.0
const val z = 0
fun a() {
if (z == 2) {
}
}
// 1 GETSTATIC NoInlineInCmpKt.z : I