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

7 lines
103 B
Plaintext

// WITH_RUNTIME
fun foo() {
val f = "text"
if (!true) {
throw AssertionError(f)
}
}