10 lines
151 B
Kotlin
Vendored
10 lines
151 B
Kotlin
Vendored
fun foo(): String = ""
|
|
|
|
val test1 = ""
|
|
val test2 = "abc"
|
|
val test3 = """"""
|
|
val test4 = """abc"""
|
|
val test5 = """
|
|
abc
|
|
"""
|
|
val test6 = "$test1 ${foo()}" |