4ebfed04d3
^KT-62425
14 lines
191 B
Kotlin
Vendored
14 lines
191 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
fun testSimpleString() {
|
|
js("var a = 123;")
|
|
}
|
|
|
|
fun testSimpleStringPlus() {
|
|
js("var a" + "=" + "123;")
|
|
}
|
|
|
|
fun testSimpleStringConcat() {
|
|
js("var a${"="}123;")
|
|
}
|