8 lines
128 B
Plaintext
8 lines
128 B
Plaintext
// WITH_RUNTIME
|
|
fun foo() {
|
|
val x = true
|
|
val y = false
|
|
if (!(x || y)) {
|
|
throw AssertionError("text")
|
|
}
|
|
} |