blob: 3b3a27d91cada132a70fb75f1a2ef58887e58345 [file]
fun box(): String {
val x = "OK"
fun bar(y: String = x): String = y
return bar()
}