a96cafe066
#KT-36504 Fixed
8 lines
194 B
Kotlin
Vendored
8 lines
194 B
Kotlin
Vendored
// EXTRACTION_TARGET: property with initializer
|
|
open class Base(protected val i: Int)
|
|
|
|
class Impl(z: Int) : Base(z) {
|
|
fun foo(): Int {
|
|
return <selection>2 + 3 + i</selection>
|
|
}
|
|
} |