Files
kotlin/compiler/testData/codegen/bytecodeText/nullCheckOptimization/nullCheckAfterExclExcl_1_4.kt
2019-09-16 12:33:01 +02:00

14 lines
166 B
Kotlin
Vendored

// !API_VERSION: LATEST
fun test(s: String?): Int {
s!!
if (s == null) {
return 5
}
return 3
}
// 1 checkNotNull
// 0 IFNULL
// 0 IFNONNULL