mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
8 lines
317 B
Kotlin
Vendored
8 lines
317 B
Kotlin
Vendored
// PARAM_DESCRIPTOR: value-parameter a: kotlin.Int defined in foo
|
|
// PARAM_TYPES: kotlin.Int, kotlin.Number, kotlin.Comparable<kotlin.Int>, java.io.Serializable, kotlin.Any
|
|
fun foo(a: Int): String {
|
|
val x = "abc$a"
|
|
val y = "abc${a}"
|
|
val z = "abc{$a}def"
|
|
return "<selection>abc$a</selection>" + "def"
|
|
} |