Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLibAndBackendCompilation/jsCode/error.fir.kt
T
Alexander Korepanov 04809a6b3b [JS IR] Move tests for JS code diagnostics
^KT-62425
2023-10-26 19:22:14 +00:00

26 lines
270 B
Kotlin
Vendored

val code = """
var s = "hello"
+ );
"""
fun main(): Unit {
js("var = 10;")
js("""var = 10;""")
js("""var
= 777;
""")
js("""
var = 777;
""")
js("var " + " = " + "10;")
val n = 10
js("var = $n;")
js(code)
}