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

8 lines
115 B
Plaintext
Vendored

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