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

17 lines
200 B
Kotlin
Vendored

fun test() {
js("")
js(" ")
js("""
""")
val empty = ""
js(empty)
val whitespace = " "
js(whitespace)
val multiline = """
"""
js(multiline)
}