Files
kotlin-fork/idea/testData/navigation/implementations/ConstructorPropertyOverriddenNavigation.kt
T
2015-11-10 22:24:46 +03:00

12 lines
316 B
Kotlin
Vendored

package testing
open class Test(open var <caret>some: Int)
class OtherTestInConstructor(override var some: Int): Test(some)
class OtherTestInBody(some: Int, other: String): Test(some) {
override var some: Int = some
}
// REF: (in testing.OtherTestInConstructor).some
// REF: (in testing.OtherTestInBody).some