Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLibAndBackendCompilation/jsCode/compileTimeString.kt
T
2023-10-26 19:22:14 +00:00

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;")
}