8 lines
249 B
Kotlin
Vendored
8 lines
249 B
Kotlin
Vendored
// FIX: "Replace with '?: error(...)'"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(p: Array<String?>) {
|
|
val v = p[0]
|
|
// now let's check it for null
|
|
<caret>assert(v != null /* null */, /* lazy message */ { "Should be not null" }) // 'v' should not be null
|
|
} |