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