Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0114e07472e7613fb80622821692cfa9e6922f31
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithJsStdLibAndBackendCompilation
/
jsCode
/
compileTimeString.kt
blob: 95348a463c96ac1d79dfc3224fcbcecdb15333c4 [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
fun testSimpleString
()
{
js
(
"var a = 123;"
)
}
fun testSimpleStringPlus
()
{
js
(
"var a"
+
"="
+
"123;"
)
}
fun testSimpleStringConcat
()
{
js
(
"var a${"
=
"}123;"
)
}