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

6 lines
111 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
if (!true) {
throw AssertionError(if (true) "text" else return)
}
}