Files
kotlin/compiler/testData/codegen/bytecodeText/deadCodeElimination/simpleConstructor.kt
2015-01-15 15:13:05 +03:00

16 lines
184 B
Kotlin
Vendored

class A
fun box() {
val x: A? = A()
val z: A? = A()
val z1: A? = if (1 == 1) z else x
x!!
z!!
z1!!
}
// 0 IFNULL
// 0 IFNONNULL
// 0 throwNpe
// 0 ATHROW