8 lines
130 B
Kotlin
8 lines
130 B
Kotlin
// WITH_RUNTIME
|
|
fun foo() {
|
|
if <caret>(true) {
|
|
throw AssertionError("text")
|
|
}
|
|
}
|
|
|
|
fun assert(x: Boolean, y: Any) {} |