mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
7 lines
163 B
Kotlin
Vendored
7 lines
163 B
Kotlin
Vendored
// SUGGESTED_NAMES: s, getX
|
|
fun foo(a: Int): String {
|
|
val x = "xabc$a"
|
|
val y = "${a}abcx"
|
|
val z = "xacb$a"
|
|
return "<selection>abc</selection>def"
|
|
} |