Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
70b97c5abe682fb7598fc5070d94c39256a0baa4
/
.
/
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;"
)
}