blob: d669480657a17c14a8784ba8d4ea96ecf7463a98 [file] [log] [blame]
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