Files
kotlin-fork/idea/testData/intentions/convertAssertToIf/lambdaMessageInsideParentheses.kt
T

6 lines
99 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
<caret>assert(true, {
if (true) "text" else return
})
}