552359ce03
#KT-7443 Fixed
12 lines
178 B
Kotlin
Vendored
12 lines
178 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
|
|
class C {
|
|
fun assert(b: Boolean) { }
|
|
|
|
fun foo(p: Array<String?>) {
|
|
val v = p[0]
|
|
<caret>assert(v != null)
|
|
}
|
|
}
|