blob: 772cb33771ade7a6472f24a17c81beb8417c3c57 [file]
fun test(p: String?): String {
return "${p ?: "Default"} test"
}
fun box(): String {
if (test(null) != "Default test") return "fail 1: ${test(null)}"
if (test("Good") != "Good test") return "fail 1: ${test("OK")}"
return "OK"
}