blob: c98985819838e46bb55f9e0f48ff44eb02407bb7 [file]
// RUN_PIPELINE_TILL: BACKEND
fun testSimpleString() {
js("var a = 123;")
}
fun testSimpleStringPlus() {
js("var a" + "=" + "123;")
}
fun testSimpleStringConcat() {
js("var a${"="}123;")
}