8 lines
117 B
Plaintext
8 lines
117 B
Plaintext
// WITH_RUNTIME
|
|
fun foo() {
|
|
if (!bar()) {
|
|
throw AssertionError("text")
|
|
}
|
|
}
|
|
|
|
fun bar(): Boolean = true |