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

8 lines
202 B
Kotlin
Vendored

// FIX: "Replace with '!!' operator"
// WITH_RUNTIME
fun foo(p: Array<String?>) {
val v = p[0]
// now let's check it for null
<caret>assert(v != null /* null */) // 'v' should not be null
}