Files
kotlin-fork/analysis/analysis-api/testData/components/scopeProvider/scopeContextForPosition/classPropertyInitializer.kt
T
2023-11-14 22:15:04 +00:00

12 lines
270 B
Kotlin
Vendored

package test
open class Base(val value: Int) {
fun baseMember(): Int = value
val baseProp: Int = value
}
class Child(val constructorProp: Int, constructorParam: Int) : Base(10) {
fun childMember(): Int = value
val childProp: Int = <expr>value</expr>
}