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

7 lines
168 B
Kotlin
Vendored

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