// PROBLEM: none // WITH_RUNTIME fun withAssign(arg: String?): String { var result: String = "" arg?.let { result = it } return result }