mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
5 lines
144 B
Kotlin
Vendored
5 lines
144 B
Kotlin
Vendored
fun foo(a: Int): String {
|
|
val x = "+cd$a:${a + 1}efg"
|
|
val y = "+cd$a${a + 1}efg"
|
|
return "ab<selection>cd$a:${a + 1}ef</selection>"
|
|
} |