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