11 lines
179 B
Plaintext
Vendored
11 lines
179 B
Plaintext
Vendored
// EXTRACTION_TARGET: property with initializer
|
|
val a = 1
|
|
|
|
private val s = "abc$a"
|
|
|
|
fun foo(): String {
|
|
val x = s
|
|
val y = s
|
|
val z = "abc{$a}def"
|
|
return s + "def"
|
|
} |