6a90dc2efe
New null check assertions are generated a bit more efficiently, with a call to `checkNotNull` instead of IFNONNULL+jump.
6 lines
89 B
Kotlin
Vendored
6 lines
89 B
Kotlin
Vendored
val a : Int? = 10
|
|
|
|
fun foo() = a!!.toString()
|
|
|
|
// 1 checkNotNull \(Ljava/lang/Object;\)V
|