blob: 641dc0fdcad6be4021083edb7048006fd4aaf604 [file] [log] [blame]
// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo() {
if <caret>(1 == 0) {
throw AssertionError("text")
}
}
class AssertionError(x: String): Exception(x) {}