Files
kotlin-fork/compiler/testData/ir/irText/expressions/stringTemplates.kt
T
Sergej Jaskiewicz 02180e8685 Factor out duplicated mangling logic for functions into the base class
^KT-57777 Fixed
^KT-57818 Fixed
2023-05-26 10:55:24 +00:00

18 lines
243 B
Kotlin
Vendored

// FIR_IDENTICAL
fun foo(): String = ""
val x = 42
val test1 = ""
val test2 = "abc"
val test3 = """"""
val test4 = """abc"""
val test5 = """
abc
"""
val test6 = "$test1 ${foo()}"
val test7 = "$test1"
val test8 = "${foo()}"
val test9 = "$x"