552359ce03
#KT-7443 Fixed
8 lines
196 B
Plaintext
Vendored
8 lines
196 B
Plaintext
Vendored
// INTENTION_TEXT: "Replace with '!!' operator"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(p: Array<String?>) {
|
|
val v = p[0]!!<caret>/* null */
|
|
// now let's check it for null
|
|
// 'v' should not be null
|
|
} |