Files
kotlin-fork/idea/testData/intentions/convertAssertToIf/lambdaVariable.kt
T
2014-04-15 19:26:39 -04:00

5 lines
79 B
Kotlin

// WITH_RUNTIME
fun foo() {
val f = { "text" }
<caret>assert(true, f)
}