7 lines
130 B
Kotlin
Vendored
7 lines
130 B
Kotlin
Vendored
// FIX: "Replace with '!!' operator"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(p: Array<String?>) {
|
|
val v = p[0]
|
|
<caret>assert(v != null)
|
|
} |