47a00bf97e
^KT-61890 Fixed
12 lines
270 B
Kotlin
Vendored
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>
|
|
} |