17 lines
178 B
Plaintext
17 lines
178 B
Plaintext
// EXTRACTION_TARGET: property with initializer
|
|
|
|
class A {
|
|
val i: Int
|
|
|
|
{
|
|
i = 1
|
|
}
|
|
|
|
private val i1 = 1 + 2
|
|
|
|
fun foo(): Int {
|
|
return i1
|
|
}
|
|
}
|
|
|