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

5 lines
78 B
Kotlin
Vendored

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