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

8 lines
137 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo(p: Array<String?>) {
val v1 = p[0]
val v2 = p[1]
<caret>assert(v1 != null)
}