blob: c9a053fcee72d4ff37885a1814cb52e446a40618 [file]
fun box(): String = runAll(
"test1" to { test1() },
"test2" to { test2() },
)
fun test1() {
val b = true
assert(!b)
}
fun test2() {
val b = true
assert(!b == true)
}