Files
kotlin-fork/idea/testData/inspectionsLocal/simplifyAssertNotNull/withMessage.kt.after
T
2017-12-26 18:39:49 +03:00

6 lines
141 B
Plaintext
Vendored

// FIX: "Replace with '?: error(...)'"
// WITH_RUNTIME
fun foo(p: Array<String?>) {
val v = p[0] <caret>?: error("Should be not null")
}