// FIR_IDENTICAL // ERROR_POLICY: SEMANTIC fun testEmptyString() { js("") } const val SPACE = " " fun testStringWithSpaces() { js("\n \n$SPACE \t" + " ") } fun testComment() { js(""" // just a comment $SPACE """) }