mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 08:31:31 +00:00
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
|