Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLibAndBackendCompilation
/
jsCode
/
compileTimeString.kt
blob: c98985819838e46bb55f9e0f48ff44eb02407bb7 [
file
]
// RUN_PIPELINE_TILL: BACKEND
fun testSimpleString
()
{
js
(
"var a = 123;"
)
}
fun testSimpleStringPlus
()
{
js
(
"var a"
+
"="
+
"123;"
)
}
fun testSimpleStringConcat
()
{
js
(
"var a${"
=
"}123;"
)
}