fa1f3871c0
#KT-29113 Fixed
8 lines
145 B
Kotlin
Vendored
8 lines
145 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test(s: String?) {
|
|
if (s != null) {
|
|
println(1)
|
|
requireNotNull<caret>(s) { "" }
|
|
println(2)
|
|
}
|
|
} |