Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/jsCode/error.fir.kt
T
2023-01-09 08:57:08 +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)
}