9 lines
188 B
Kotlin
Vendored
9 lines
188 B
Kotlin
Vendored
// EXTRACTION_TARGET: property with initializer
|
|
val a = 1
|
|
|
|
fun foo(): String {
|
|
val x = "xabc$a"
|
|
val y = "${a}abcx"
|
|
val z = "xacb$a"
|
|
return "<selection>abc</selection>def"
|
|
} |