a96cafe066
#KT-36504 Fixed
12 lines
211 B
Plaintext
Vendored
12 lines
211 B
Plaintext
Vendored
// EXTRACTION_TARGET: property with getter
|
|
|
|
open class Base(protected val i: Int)
|
|
|
|
class Impl(i: Int) : Base(i) {
|
|
private val i1: Int
|
|
get() = 2 + 3 + i
|
|
|
|
fun foo(): Int {
|
|
return i1
|
|
}
|
|
} |