mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
7 lines
160 B
Kotlin
Vendored
7 lines
160 B
Kotlin
Vendored
// SUGGESTED_NAMES: s, getX
|
|
fun foo(a: Int): String {
|
|
val x = "xcd$a"
|
|
val y = "${a}cdx"
|
|
val z = "xcf$a"
|
|
return "ab<selection>cd</selection>ef"
|
|
} |