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

7 lines
158 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo(p: Array<String?>) {
val v = p[0]
<caret>assert(v != null, { val t = 1; "Should be not null: $t" })
}