Files
kotlin-fork/idea/testData/intentions/simplifyAssertNotNull/noMessage.kt.after
T
2016-01-18 15:34:20 +03:00

6 lines
121 B
Plaintext
Vendored

// INTENTION_TEXT: "Replace with '!!' operator"
// WITH_RUNTIME
fun foo(p: Array<String?>) {
val v = p[0]!!<caret>
}