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

6 lines
101 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo() {
if (!true) {
throw AssertionError("Assertion failed")
}
}