JS backend: fixed wrong behavior when using nullable type in string template.

(cherry picked from commit 3a16e95)
This commit is contained in:
develar
2012-10-03 17:44:49 +04:00
committed by Zalim Bashorov
parent 596e0b0acc
commit 92eb4a5f1f
4 changed files with 41 additions and 20 deletions
@@ -7,5 +7,8 @@ fun box(): Boolean {
if (message != "a = abc, b = def") return false
val v1 = null
if ("returns null null" != "returns $v1 ${null}") return false
return true
}