mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
8 lines
267 B
Kotlin
Vendored
8 lines
267 B
Kotlin
Vendored
// SUGGESTED_NAMES: s, getX
|
|
// PARAM_DESCRIPTOR: value-parameter a: kotlin.Int defined in foo
|
|
// PARAM_TYPES: kotlin.Int
|
|
fun foo(a: Int): String {
|
|
val x = "_ab$a:${a + 1}cd__"
|
|
val y = "_a$a:${a + 1}cd__"
|
|
return "<selection>ab$a:${a + 1}cd</selection>ef"
|
|
} |