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