13 lines
173 B
Plaintext
Vendored
13 lines
173 B
Plaintext
Vendored
// EXTRACTION_TARGET: property with initializer
|
|
|
|
class A(val n: Int = 1) {
|
|
val m: Int = 2
|
|
|
|
private val i = m + n + 1
|
|
|
|
fun foo(): Int {
|
|
return i
|
|
}
|
|
}
|
|
|