Files
kotlin-fork/idea/testData/multiModuleLineMarker/hierarchyWithExpectClassCommonSide/common/common.kt
T
Alexey Sedunov 17abce2811 Misc: Support light-classless classes in inheritors search
In particular, support line markers for expect-classes
and navigation to expect-classes from their base class

 #KT-20329 Fixed
2017-10-24 15:43:51 +03:00

9 lines
240 B
Kotlin
Vendored

package test
open class <lineMarker>SimpleParent</lineMarker>
expect open class <lineMarker><lineMarker>ExpectedChild</lineMarker></lineMarker> : SimpleParent
class ExpectedChildChild : ExpectedChild()
class SimpleChild : SimpleParent()