// IS_APPLICABLE: false // WITH_RUNTIME fun foo() { if (1 == 0) { throw AssertionError("text") } } class AssertionError(x: String): Exception(x) {}