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