17abce2811
In particular, support line markers for expect-classes and navigation to expect-classes from their base class #KT-20329 Fixed
16 lines
406 B
Kotlin
Vendored
16 lines
406 B
Kotlin
Vendored
package test
|
|
|
|
open class <caret>SimpleParent
|
|
|
|
expect open class ExpectedChild : SimpleParent
|
|
|
|
class ExpectedChildChild : ExpectedChild()
|
|
|
|
class SimpleChild : SimpleParent()
|
|
|
|
// REF: [common] (test).ExpectedChild
|
|
// REF: [common] (test).ExpectedChild
|
|
// REF: [common] (test).ExpectedChildChild
|
|
// REF: [common] (test).SimpleChild
|
|
// REF: [jvm] (test).ExpectedChild
|
|
// REF: [jvm] (test).ExpectedChildChildJvm |