Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/jsCode/warning.fir.kt
T
2023-01-09 08:57:08 +00:00

11 lines
122 B
Kotlin
Vendored

fun main(): Unit {
js("var a = 08;")
js("""var a =
08;""")
val code = "var a = 08;"
js(code)
}