4b5f3b7a94
#KT-24615 Fixed
9 lines
190 B
Kotlin
Vendored
9 lines
190 B
Kotlin
Vendored
// EXTRACTION_TARGET: property with getter
|
|
|
|
open class Base(protected val i: Int)
|
|
|
|
class Impl(i: Int) : Base(i) {
|
|
fun foo(): Int {
|
|
return <selection>2 + 3 + i</selection>
|
|
}
|
|
} |