blob: f33c6984188cb50b7b7639f15e75d2624be3eaf4 [file]
fun bool_yes(): Boolean = true
fun box(): String {
if (!bool_yes()) return "FAIL !bool_yes()"
return "OK"
}