blob: 4a38115ff27fb3fd043b50054e0e9d047624ccfc [file]
fun box(): String {
val x = foo()
if (x.toString() != "kotlin.Unit") return "FAIL: $x"
return "OK"
}
fun foo() {
return Unit
}